01 / 03
Three statements, all present
These are the three statements that change things. Lay the shapes out side by side.
- add …
INSERT INTO table (columns...) VALUES (values...); - fix …
UPDATE table SET column = value WHERE condition; - delete …
DELETE FROM table WHERE condition;
Four, counting the SELECT that reads. That is enough for an app to work its data.