What Is The Basis Syntax For A Table Alias #184
What is the basis syntax for a table alias?
This multiple choice question (MCQ) is related to the book/course gs gs115 Structured Query Language. It can also be found in gs gs115 SQL Operators and Wildcards - SQL Aliases - Quiz No.1.
What is the basis syntax for a table alias?
Select column_name From table_name ALIAS alias_name;
Select column_name From table_name TABLE AS alias_name;
Select column_name From table_name AS alias_name;
Select column_name From table_name TABLE ALIAS alias_name;