Filter duplicate rows based on a field

后端 未结 4 817
余生分开走
余生分开走 2021-01-01 23:39

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:

<
4条回答
  •  隐瞒了意图╮
    2021-01-02 00:23

    Use SELECT DISTINCT keyword to get different values SELECT DISTINCT ID,BillID,Account,Name,Amount,Lang FROM Bills; You will get different values.

提交回复
热议问题