InterviewSolution
Saved Bookmarks
| 1. |
Which line of the following statements will produce error?(a) SELECT * FROM person WHERE person_id=1;(b) SELECT pname FROM person;(c) SELECT pname, lname, person_id FROM person;(d) None of the mentioned |
|
Answer» Right answer is (d) None of the mentioned To explain: None. |
|