Fabric RTI 101: KQL Projections, Extensions, and Aliases
In KQL, projections are how you shape your dataset — deciding which columns to keep, how to name them, and even adding new ones on the fly.
The main operator for this is project. It lets you select only the columns you need, and at the same time, you can rename columns using aliases to make your results more meaningful or easier to read. For example:
Events
| project Time = Timestamp, User = UserId, Message
Here, the column Timestamp is renamed to Time, and UserId becomes User. This makes your results cleaner and easier to understand — especially when you’re building queries for dashboards or reports.
2026-06-12

