Consider the following table structure with data -
AdjusterID | CompanyID | FirstName | LastName | EmailID
============================================================
1001 | Sterling | Jane | Stewart | [email protected]
1002 | Sterling | David | Boon | [email protected]
1003 | PHH | Irfan | Ahmed | [email protected]
1004 | PHH | Rahul | Khanna | [email protected]
============================================================
Where AdjusterID is the primary key. There are no. of adjusters for a company.
I need to have a query that will list single adjuster per company. i.e. I need to get the result as -
========================================================
1001 | Sterling | Jane | Stewart | [email protected]
1003 | PHH | Irfan | Ahmed | [email protected]
========================================================
If any one could help me that will be great.