Aliases
1.
This is used to give alias name to table or column while writing sql query
2.
In a table, a column contains duplicate value, if you want to list all different value only, then which SQL clause is used?
3.
To give a temporary name to a table, or a column in a table for more readability, what is used ?
4.
What does below SQL statement describe?
SELECT CustomerName, Address + ‘, ‘ + City + ‘, ‘ + Country AS Address
FROM Customers;
5.
Logical operators used in SQL are
6.
To specify the number of records to return, which keyword is used
7.
To search for a specified pattern in a column
8.
Which clause is used to combine rows from two or more tables based on a related column between them.
9.
Which is called as a virtual table in SQL?