Forum Discussion

Jin Kang's avatar
Jin Kang
Copper Contributor
Mar 23, 2018
Solved

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...
  • Hi

    The code will be

    Table 1
    | project NewColumnName = Column1 

Resources