-
What will be the output of the query given below?
SELECT *
FROM Student
WHERE (title=’Monitor’) AND (start_date=2019-01-25);
-
- All columns but only those rows which contain ‘Monitor’ as a “title” and 2019-01-25 as a “start_date”
- All rows belong to table Student
- All columns and rows belong to table Student
- All of above
- None of these
Correct Option: A
“WHERE” clause is used to filter out unwanted rows therefore in above query only those rows will be selected which contain title as ‘Monitor’ and start_date 2019-01-25.