PostgreSQL DML Operations
Jump to navigation
Jump to search
Internal
INSERT
INSERT INTO person (id, name) VALUES (10, 'Bob')
Note: Use single quotes for the string values. Double quotes will let the SQL interpreter think you use a column name.
UPDATE
UPDATE person SET id=50 WHERE name='Bob'
DELETE
DELETE FROM person WHERE id=10
Double quotes can be used around column names.
SELECT
SELECT "id", "name" FROM person