InterviewSolution
Saved Bookmarks
| 1. |
Which of these query will display the the table given above ?(a) Select employee from name(b) Select name(c) Select name from employee(d) Select employeeThis question was posed to me in an internship interview.My enquiry is from SQL Queries topic in chapter SQL : Queries, Constraints and Triggers of Database Management |
|
Answer» Right ANSWER is (c) SELECT NAME from employee |
|