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
1 Like
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
1 Like