psql delete record code example
Example 1: delete row psql
DELETE FROM table
WHERE condition;
Example 2: delete from select postgresql
DELETE FROM mytable
WHERE ctid IN (
SELECT ctid
FROM mytable
GROUP BY s.serialId, s.valuetimestamp
ORDER BY s.serialId
LIMIT 10
)