我正在使用此代码尝试使用代码CBEW仅显示一个计数的多个字段。 我试图用它拉日期和groupid字段。 我会将它们添加到select和group by中吗? 对不起 - 我是SQL的新手!
select accnt
from table
group by accnt
having count(*) = 1 and max(code) = 'CBEW';
答案 0 :(得分:0)
我回答了自己的问题。 这就是我所得到的。
select accnt, date, groupid
from table
group by accnt, date, groupid
having count(*) = 1 and max(code) = 'CBEW';