SQL MCQ : True or False (Multiple Choice Questions)
Question 1 |
Semicolon at the end of each SQL Statement will terminate the SQL statement.
False | |
True |
Question 1 Explanation:
Some database systems require a semicolon at the end of each SQL statement.
Question 2 |
SQL is NOT case insensitive.
True | |
False |
Question 2 Explanation:
SQL is NOT case sensitive. i.e In the SQL -
SELECT * FROM Customers;and
select * FROM Customers;both are same
Question 3 |
The SELECT command, with its various clauses, allows users to query the data contained in the tables.
False | |
True |
Question 4 |
The condition in a WHERE clause can refer to only one value
True | |
False |
Question 5 |
Semicolon is used to separate each SQL statement in database systems that allow more than one SQL statement.
True | |
False |
There are 5 questions to complete.