Mar 23 2018
02:08 PM
- last edited on
Apr 07 2022
04:56 PM
by
TechCommunityAP
Mar 23 2018
02:08 PM
- last edited on
Apr 07 2022
04:56 PM
by
TechCommunityAP
What is Azure Log Analytics query equivalent to the following sql statement?
Select Column1 as "NewColumnName"
From Table1
This is as far as I've gotten...
Table 1
| Project Column1 ??????
Thanks!
Mar 25 2018 10:51 PM
SolutionHi
The code will be
Table 1 | project NewColumnName = Column1