By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
CREATE TABLE
INSERT 0 4
| id | color | size |
|---|---|---|
| 3 | blue | small |
| 4 | red | big |
SELECT 2
| id | color | size |
|---|---|---|
| 3 | blue | small |
| 4 | red | big |
SELECT 2
DELETE 2
| id | color | size |
|---|---|---|
| 3 | blue | small |
| 4 | red | big |
SELECT 2