1-- SELECT my_col_name AS my_alias FROM my_table;
2SELECT sysdate() AS "Current date"; -- MySQl Alias
3SELECT sysdate AS "Current date" FROM dual; -- same in Oracle
1ALIAS command in SQL is the name that
2can be given to any table or a column.
3This alias name can be referred in WHERE
4clause to identify a particular table or a column.