-
What will be the output of the query given below?
SELECT emp_id, fname, lname
FROM employee
WHERE title='Manager’ AND start_date > 2016-03-20;
-
- Columns mention with “SELECT” clause and only those rows which contain ‘Manager’ as a “title” and start_date > 2016-03-20
- All columns
- Only those columns which are mention with “SELECT” clause
- All of above
- None of these
Correct Option: A
Columns mention with “SELECT” clause and only those rows which contain ‘Manager’ as a “title” and start_date > 2016-03-20