SQL Server MCQ Document
SQL Server MCQ Document
rules that facilitate fast response between the database and the user side.
SQL Features
SQL allows us to interact with the databases and bring out/manipulate data within
it. Using SQL, we can create our own databases and then add data into these
databases in the form of tables.
Useful Resources
DBMS Interview
SQL Cheat Sheet
SQL Queries
Database Testing
Complete Technical Interview Guide
SQL Books
SQL Projects
SQL IDEs
SQL Commands
Learn SQL
SQL MCQs
Events|Powered By
Software Dev
Data Science
All Events
5227 Registered
Know More
Register Now
215 Registered
Know More
Register Now
1214 Registered
Know More
Register Now
6027 Registered
Know More
Register Now
1011 Registered
Know More
Register Now
1.
Which of the following are some common RDBMS in use?
Oracle
MySQL
HeidiSQL
All of the above
Check Answer
2.
What command is used to create a new table in SQL?
CREATE TABLE
BUILD TABLE
GENERATE TABLE
None of the above
Check Answer
3.
What does the following statement in SQL do?
DROP TABLE student;
Deletes a table called student.
Creates a table called student.
Check if there is a table called student.
None of the above.
Check Answer
4.
Which of the following are types of Unicode character string types in SQL?
nchar
ntext
Both A and B
None of the above
Check Answer
5.
What does BLOB in SQL stand for?
Binary Large Objects
Big Large Objects
Binary Language for Objects
None of the above
Check Answer
6.
Which of the following datatype is most appropriate for storing a string of up to
255 characters?
TEXT
TINY TEXT
BLOB
BINARY
Check Answer