Quantcast
Channel: Welcome To TechBrothersIT
Viewing all articles
Browse latest Browse all 1878

Docstring in Kusto Add descriptive information for Table, Column or Function in Kusto Query Language (KQL)

$
0
0

Topic: Docstring in Kusto Query Language | Add Descriptive Information for Table, Column or function in Kusto Query Language.

Docstring in Kusto Add descriptive information for Table, Column or Function in Kusto Query Language (KQL)Kusto Query Language is a powerful tool to explore your data and discover patterns, identify anomalies and outliers, create statistical modeling, and more. The query uses schema entities that are organized in a hierarchy similar to SQL's: databases, tables, and columns. A Kusto query is a read-only request to process data and return results. The request is stated in plain text, using a data-flow model that is easy to read, author, and automate. Kusto queries are made of one or more query statements.


 //DocString is free descriptive text that you can attach to a table/function/column. This string is presented in various UX settings next to the entity name.  

//.alter table docstring

.alter table MyTable docstring 'This is Customer Table'


//.alter-merge column-docstring
.alter-merge table MyTable column-docstrings (Name:"This is full name for Customer", Address:"Customer Addresss")



Video Demo: Docstring in Kusto Add descriptive information for Table, Column or Function in Kusto Query Language (KQL)


Viewing all articles
Browse latest Browse all 1878

Trending Articles