[Postgres] Update and Delete records in Postgres

Delete example:

DELETE FROM movies
WHERE count_stars > 70;

Update example:

UPDATE movies
SET count_stars=3
WHERE count_stars=2;
原文地址:https://www.cnblogs.com/Answer1215/p/6523779.html