Computer Science
SQL provides the AS keyword, which can be used to assign meaningful column names to the results of queries using the SQL built-in functions.
SQL Queries
4 Likes
Answer
True
Reason — SQL provides the AS keyword, which can be used to assign meaningful column names to the results of queries using the SQL built-in functions. The syntax is as follows :
SELECT <column name> AS [column alias] [, <column name> AS [column alias]] FROM <table name> ;
Answered By
2 Likes