Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Inserting data in KQL

Tags:

azure

kql

I have a table that I created using KQL. Now I want to populate it by inserting values inside but could not get the exact syntax. How to insert data in my table in KQL syntax?

like image 633
Yatharth Dholakia Avatar asked Jul 05 '26 07:07

Yatharth Dholakia


1 Answers

https://learn.microsoft.com/en-us/azure/kusto/management/data-ingestion/ingest-inline

.ingest inline into table Purchases <|
Shoes,1000
Wide Shoes,50
"Coats, black",20
"Coats with ""quotes""",5

I assume that you know that single row ingests are usually not the way to ingest data into Azure Data Explorer.

like image 118
silent Avatar answered Jul 08 '26 00:07

silent