I have a table with 3 columns.
ID, EMail, Company
Example data
1,[email protected],BBC
1,[email protected],British Broadcasting
1,[email protected],Beeb
I only want the first record returned. Using Distinct on ID doesn't seem to work when I include Company in the select statement because the values are different. I just want to discard the subsequent records.
Can someone help me please
ID, EMail, Company
Example data
1,[email protected],BBC
1,[email protected],British Broadcasting
1,[email protected],Beeb
I only want the first record returned. Using Distinct on ID doesn't seem to work when I include Company in the select statement because the values are different. I just want to discard the subsequent records.
Can someone help me please
