1

Is it possible to project a ADX column with a new column name that has whitespace?

For instance, Covid19_map2 | project "My Area Info" = AreaInfo

Here is the ADX sample cluster query https://dataexplorer.azure.com/clusters/help/databases/Samples?query=H4sIAAAAAAAAA3POL8tMMbSMz00sMOKqUSgoys9KTS5RUPKtVHAsSk1U8MxLy1dSsAVzQGwA7I7HADAAAAA=

Born2Code
  • 127
  • 1
  • 4
  • 19

1 Answers1

1

please see: Identifier quoting

for example:

Covid19_map2
| project ["My Area Info"] = AreaInfo
Yoni L.
  • 22,627
  • 2
  • 29
  • 48