Alias statement

Learn how to use an alias statement to define an alias for a database that is used for a query.

Alias statements allow you to define an alias for a database, which can be used in the same query.

The alias statement is useful as a shorthand name for a database so it can be referenced using that alias in the same query.

Syntax

alias database DatabaseAliasName = cluster(“QueryURI”).database("DatabaseName")

Parameters

NameTypeRequiredDescription
DatabaseAliasNamestring✔️An existing name or new database alias name. You can escape the name with brackets. For example, [“Name with spaces”].
QueryURIstring✔️The URI that can be used to run queries or management commands.
DatabaseNamestring✔️The name of the database to give an alias.

Examples

First, count the number of records in that table.

StormEvents
| count

Output

Count
59066

Then, give an alias to the Samples database and use that name to check the record count of the StormEvents table.

alias database samplesAlias = cluster("https://help.kusto.windows.net").database("Samples");
database("samplesAlias").StormEvents | count

Output

Count
59066

Create an alias name that contains spaces using the bracket syntax.

alias database ["Samples Database Alias"] = cluster("https://help.kusto.windows.net").database("Samples");
database("Samples Database Alias").StormEvents | count

Output

Count
59066