Select * with specific alias [syntax]

Viewed 20250

I want to use select * to select all the fields from a table but I also want to use an alias on just one field. Is it possible? If so what would the syntax be.

Example

select *,
item1 as hats
from factory

I have not been able to make anything like this work, Thanks!

4 Answers
Related