Table of Content

SQL MCQ : True or False (Multiple Choice Questions)


Question 1
Semicolon at the end of each SQL Statement will terminate the SQL statement.
A
False
B
True
Question 1 Explanation: 
Some database systems require a semicolon at the end of each SQL statement.
Question 2
SQL is NOT case insensitive.
A
True
B
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.
A
False
B
True
Question 4
The condition in a WHERE clause can refer to only one value
A
True
B
False
Question 5
Semicolon is used to separate each SQL statement in database systems that allow more than one SQL statement.
A
True
B
False
There are 5 questions to complete.