how do you remove duplicate columns from postgres join code example
Example 1: query postgres delete duplicates
DELETE FROM dups a USING (
SELECT MIN(ctid) as ctid, key
FROM dups
GROUP BY key HAVING COUNT(*) > 1
) b
WHERE a.key = b.key
AND a.ctid <> b.ctid
Example 2: postgres select duplicate columns
select * from yourTable ou
where (select count(*) from yourTable inr
where inr.sid = ou.sid) > 1