Kolom SQL sebagai 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
Dentedghost