SOLVED

Equivalent to Select column1 as "newcolumnname"

Copper Contributor

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 
1 best response

Accepted Solutions
best response confirmed by Stanislav Zhelyazkov (MVP)
Solution

Hi

The code will be

Table 1
| project NewColumnName = Column1 

View solution in original post