If we want to give temporarily name to a table then we can do easily with " as " statement .
Sometime permanent name of table is very confusing so we need temporary name of table to make easy understanding . Syntax
select old_col_name as new_col_name from table_name ;
0 Comment(s)