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