Select from following answers:- With distinct clause
- With Group By clause
- Both a and b
- None of these.
- All Above
We can select distinct records from a table in 2 different ways as:-
Select Distinct Employee_Id from Employee_master;
//Or
Select Employee_Id from Employee_master
Group by Employee_Id;
Show Correct Answer
Asked In: Many Interviews |
Alert Moderator