microsoft / Kusto-Query-Language

Kusto Query Language is a simple and productive language for querying Big Data.
Apache License 2.0
510 stars 97 forks source link

Getting Table reference for same column names in Join #100

Closed DeepakRautela02 closed 1 year ago

DeepakRautela02 commented 1 year ago

Is there any method to retrieve the table reference for the columns that are renamed as part of doing the join operations? As an example, If we join two tables where two tables have some of the columns that have the same name,

DeviceEvents
| join tmpTable on Time

here if both the tables have Time column, the result will contain columns Time, Time1, when we use kustoCode.Globals.GetTable(c), we get the reference table for Time, but not for Time1. Is there a way to extract that information for Time1 column?