我在PostgreSQL中有这样的查询
SELECT
c.id,
c.firstname,
c.lastname
FROM
tblperson c
WHERE
NOT EXISTS(SELECT 1 FROM tblorder p WHERE p.id = c.id)
ORDER BY
id,
firstname,
lastname
as a result I got this
我如何删除第二个记录作为此POstgreSQL代码
DELETE FROM
tblperson dup_lang
USING tblperson dist_lang
WHERE dup_lang.id < dist_lang.id
AND dup_lang.firstname= dist_lang.firstname
AND dup_lang.lastname= dist_lang.lastname;
1条答案
按热度按时间pvabu6sv1#
假设您希望删除
tblperson
中与查询结果相匹配的两条记录,并基于此假设提供一个试探性的答案。