I have several records (bills) that are basically duplicates of each other, except for one field, which represents the language that bill is in.
For example:
Use SELECT DISTINCT keyword to get different values SELECT DISTINCT ID,BillID,Account,Name,Amount,Lang FROM Bills; You will get different values.
SELECT DISTINCT ID,BillID,Account,Name,Amount,Lang
FROM Bills;