

MCQOPTIONS
Saved Bookmarks
This section includes 5 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. |
Select * from student join takes using (ID);
|
A. | Select * from student inner join takes using (ID); |
B. | Select * from student outer join takes using (ID); |
C. | Select * from student left outer join takes using (ID); |
D. | All of the mentioned |
Answer» B. Select * from student outer join takes using (ID); | |
2. |
Select ID, name, dept name, salary * 1.1 where instructor;
|
A. | Salary*1.1 |
B. | ID |
C. | Where |
D. | Instructor |
Answer» D. Instructor | |
3. |
Select ________ dept_name from instructor;
|
A. | All |
B. | From |
C. | Distinct |
D. | Name |
Answer» D. Name | |
4. |
Select ID, GPA from student grades order by GPA ____________
|
A. | Limit 10 |
B. | Upto 10 |
C. | Only 10 |
D. | Max 10 |
Answer» B. Upto 10 | |
5. |
Select __________ from instructor where dept name= Comp. Sci. ;
|
A. | Mean(salary) |
B. | Avg(salary) |
C. | Sum(salary) |
D. | Count(salary) |
Answer» C. Sum(salary) | |