Forum Discussion
Jin Kang
Mar 23, 2018Copper Contributor
Equivalent to Select column1 as "newcolumnname"
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...
- Mar 25, 2018
Hi
The code will be
Table 1 | project NewColumnName = Column1
Mar 25, 2018
Hi
The code will be
Table 1 | project NewColumnName = Column1