Fabric RTI 101: Using Wildcards with Union
In KQL, the union operator can combine results from multiple tables, even when those tables follow a naming pattern. This is particularly useful in environments where data is split across many similar tables — for example, logs_2024_01, logs_2024_02, and so on.
You can use wildcards with the union operator to simplify these queries. Instead of listing each table individually, you can write:
union withsource=TableName logs_*
This automatically brings together all tables whose names begin with logs_.
2026-09-16
