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:
select BillID,Account,Name,Amount,max(Lang) FROM Bills WHERE Account='abcd' group by BillID,Account,Name,Amount;
Same as user2407394 except without the ID in the groupby, since that would return 3 too.