sql column as header

Solutions on MaxInterview for sql column as header by the best coders in the world

showing results for - "sql column as header"
Lena
15 May 2019
1You simply need to us the "as" statement to rename an existing column or result.
2> select name, max(age) as old from People
3> Result:
4> name		|	old
5> Steven	|	72
similar questions
queries leading to this page
sql column as header