This keyword allows you to rename a coulmn or tabe using an alias.
\!h NOTE: The columns have not actually been renamed, the aliases only appear in the result.
\!h Example:
SELECT name AS 'title'-- column 'name' now has the alias 'title'
FROM movies;