テーブルがあり、4つの列があるとします
Id, Name, Cell_no, Cat_id
。Cat_id
countが。より大きいすべての列を返す必要があります1
。
グループはとで行う必要がCell_no
ありName
ます。私がこれまでにしたこと..
select Cell_no, COUNT(Cat_id)
from TableName
group by Cell_Number
having COUNT(Cat_id) > 1
しかし、私が必要としているのは、このようなものです。
select *
from TableName
group by Cell_Number
having COUNT(Cat_id) > 1