Answers for "sql column as header"

SQL
0

sql column as header

You simply need to us the "as" statement to rename an existing column or result.
> select name, max(age) as old from People
> Result:
> name		|	old
> Steven	|	72
Posted by: Guest on February-08-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language