By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
CREATE TABLE
INSERT 0 6
| id | name | description |
|---|---|---|
| 1 | A | null |
| 2 | B | null |
| 2 | B | null |
| 3 | C | null |
| 3 | C | null |
| 3 | C | not a DUPE! |
SELECT 6
DELETE 2
| id | name | description |
|---|---|---|
| 1 | A | null |
| 2 | B | null |
| 3 | C | null |
| 3 | C | not a DUPE! |
SELECT 4