in kusto (KQL) I'm trying to print type of column in my table so I did:
SamplePowerRequirementHistorizedData
| print gettype(my_column_name)
which failed, so I replaced my_column_name with 5 and it failed too. How may I fix this?
The error message says:
The operator must be the first operator in the query.(KS175)
Which doesn't make sense as I need the table name to be first... (to access its columns)