SOLVED

Equivalent to Select column1 as "newcolumnname"

Senior Member

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!

 

1 Reply
best response confirmed by Stanislav Zhelyazkov (MVP)
Solution

Hi

The code will be

Table 1
| project NewColumnName = Column1