Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

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
 
PREVIOUS NEXT
Tagged: #sql #column #header
ADD COMMENT
Topic
Name
9+2 =