-
What will be the output of a query given below?
SELECT * FROM Employee
WHERE Employee_id=1;
-
- Show all columns and rows
- Shows only columns Employee_id
- Show all columns but only those rows which belongs to Employee_id=1
- All of above
- None of these
Correct Option: C
Clause “WHERE” is also used, which tell the compiler to show only that rows which belong to Employee_id=1.