Given a table of records with empID, contact number; write a query to print empIDs who have multiple phone numbers
Select empID frm tblEmp having(contactNum) > 1 Assuming tblEmp is our table. Tried to get the data with above query but its not working...
Select empID from tblEmp group by empId having count(*) > 1
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)