Explore topic-wise MCQs in SQL Server.

This section includes 2 Mcqs, each offering curated multiple-choice questions to sharpen your SQL Server knowledge and support exam preparation. Choose a topic below to get started.

1.

Insert into employee _________ (1002,Joey,2000);
In the given query which of the keyword has to be inserted?

A. Table
B. Values
C. Relation
D. Field
Answer» C. Relation
2.

Select * from employee where salary>10000 and dept_id=101;
Which of the following fields are displayed as output?

A. Salary, dept_id
B. Employee
C. Salary
D. All the field of employee relation
Answer» E.