-
What will be the output of the query given below?
SELECT Id, FirstName, LastName
FROM Student
WHERE title=’Monitor’;
-
- Columns mention with “SELECT” clause and only those rows which contain ‘Monitor’ as a “title”
- All columns
- Only those columns which are mention with “SELECT” clause
- All of above
- None of these
Correct Option: A
“WHERE” clause is used to filter out unwanted rows and “SELECT” clause is used to select columns from table.