MCQOPTIONS
Saved Bookmarks
This section includes 3 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. |
The command to remove rows from a table CUSTOMER is __________________ |
| A. | DROP FROM CUSTOMER |
| B. | UPDATE FROM CUSTOMER |
| C. | REMOVE FROM CUSTOMER |
| D. | DELETE FROM CUSTOMER WHERE |
| Answer» E. | |
| 2. |
Find all the tuples having a temperature greater than Paris . |
| A. | SELECT * FROM weather WHERE temperature > (SELECT temperature FROM weather WHERE city = Paris |
| B. | SELECT * FROM weather WHERE temperature > (SELECT * FROM weather WHERE city = Paris ) |
| C. | SELECT * FROM weather WHERE temperature > (SELECT city FROM weather WHERE city = Paris ) |
| D. | SELECT * FROM weather WHERE temperature > Paris temperature |
| Answer» B. SELECT * FROM weather WHERE temperature > (SELECT * FROM weather WHERE city = Paris ) | |
| 3. |
What is the meaning of LIKE %0%0% ? |
| A. | Feature begins with two 0 s |
| B. | Feature ends with two 0 s |
| C. | Feature has more than two 0 s |
| D. | Feature has two 0 s in it, at any position |
| Answer» E. | |