InterviewSolution
Saved Bookmarks
| 1. |
Which of the SQL statements is correct?(a) SELECT Username AND Password FROM Users(b) SELECT Username, Password FROM Users(c) SELECT Username, Password WHERE Username = ‘user1’(d) None of the MentionedThis question was posed to me during an online interview.This key question is from Structured Query Language in section SQL Basics of Oracle |
|
Answer» Right answer is (B) SELECT Username, Password FROM Users |
|