1 つのテーブルに 3 つの列 (code、code alt、product) があります。コード列に重複データがあります。コード列を繰り返さずにすべての結果を残したい。私はこれで試します
Select code, code alt, product from table
where code in
(
select code from table
group by code
having count (code)=1
)
ただし、すべての結果が表示されるわけではありません。
ありがとう