kusto 命令在突出显示的数据库中创建 table
kusto command to create a table within highlighted database
我想向 select 数据库编写查询,然后在该数据库中创建 table。
我有以下查询来创建一个 table,有没有办法在命令本身中突出显示数据库?
.create table ABC (
A:string ,
B:string
)
Is there a way to highlight the DB within the command itself?
否 - 由于该命令在特定数据库的上下文中运行,因此您必须首先确保您处于要在其中创建 table.[=12= 的数据库的上下文中]
在 Web 界面中,这意味着 'selecting' 连接面板中的数据库。
在API, that means explicitly specifying the database name in the connection string builder (or as part of the REST request parameters),或者调用方法时执行控制命令。
我想向 select 数据库编写查询,然后在该数据库中创建 table。 我有以下查询来创建一个 table,有没有办法在命令本身中突出显示数据库?
.create table ABC (
A:string ,
B:string
)
Is there a way to highlight the DB within the command itself?
否 - 由于该命令在特定数据库的上下文中运行,因此您必须首先确保您处于要在其中创建 table.[=12= 的数据库的上下文中]
在 Web 界面中,这意味着 'selecting' 连接面板中的数据库。
在API, that means explicitly specifying the database name in the connection string builder (or as part of the REST request parameters),或者调用方法时执行控制命令。