-
What will be the output of a query given below?
SELECT Employee_id, FirstName, LastName
FROM Employee
WHERE Employee_id=1;
-
- Show all columns and rows
- Shows only columns Employee_id
- Show only columns(Employee_id, FirstName, LastName) 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 are belong to Employee_id=1.