project-keep operator
Learn how to use the project-keep operator to select columns from the input to keep in the output.
Select what columns from the input to keep in the output. Only the columns that are specified as arguments will be shown in the result. The other columns are excluded.
Syntax
T | project-keep
ColumnNameOrPattern [,
…]
Parameters
Name | Type | Required | Description |
---|---|---|---|
T | string | ✔️ | The tabular input from which to keep columns. |
ColumnNameOrPattern | string | ✔️ | One or more column names or column wildcard-patterns to be kept in the output. |
Returns
A table with columns that were named as arguments. Contains same number of rows as the input table.
Example
This query returns columns from the ConferenceSessions
table that contain the word “session”.
ConferenceSessions
| project-keep session*
Output
The output table shows only the first 10 results.
sessionid | session_title | session_type | session_location |
---|---|---|---|
COM64 | Focus Group: Azure Data Explorer | Focus Group | Online |
COM65 | Focus Group: Azure Data Explorer | Focus Group | Online |
COM08 | Ask the Team: Azure Data Explorer | Ask the Team | Online |
COM137 | Focus Group: Built-In Dashboard and Smart Auto Scaling Capabilities in Azure Data Explorer | Focus Group | Online |
CON-PRT157 | Roundtable: Monitoring and managing your Azure Data Explorer deployments | Roundtable | Online |
CON-PRT103 | Roundtable: Advanced Kusto query language topics | Roundtable | Online |
CON-PRT157 | Roundtable: Monitoring and managing your Azure Data Explorer deployments | Roundtable | Online |
CON-PRT103 | Roundtable: Advanced Kusto query language topics | Roundtable | Online |
CON-PRT130 | Roundtable: Data exploration and visualization with Azure Data Explorer | Roundtable | Online |
CON-PRT130 | Roundtable: Data exploration and visualization with Azure Data Explorer | Roundtable | Online |
… | … | … | … |
Related content
- To choose what columns from the input to exclude from the output, use project-away.
- To rename columns, use
project-rename
. - To reorder columns, use
project-reorder
.
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.