InterviewSolution
Saved Bookmarks
| 1. |
Which of the following command is used to display the departments of the instructor relation?(a) Select * from instructor where Dept_name = Finance;(b) Select * from instructor ;(c) Select dept_name from instructor;(d) Select dept_name for instructor where Name=Jackson;This question was posed to me in homework.The above asked question is from Querying database part-2 DML in chapter Database Systems Design and Implementation of Database Management |
|
Answer» The correct CHOICE is (C) SELECT dept_name from instructor; |
|