By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
CREATE TABLE
INSERT 0 8
| id | comment |
|---|---|
| 2 | my comment |
| 3 | my comment |
| 5 | my comment |
| 1 | other comment |
| 4 | other comment |
| 6 | other comment |
| 7 | some comment |
| 8 | a comment |
SELECT 8
| id | comment |
|---|---|
| 2 | my comment |
| 3 | my comment |
| 5 | my comment |
| 8 | a comment |
| 1 | other comment |
| 4 | other comment |
| 6 | other comment |
| 7 | some comment |
SELECT 8
INSERT 0 4
| id | comment |
|---|---|
| 2 | my comment |
| 3 | my comment |
| 5 | my comment |
| null | my comment |
| 8 | a comment |
| 1 | other comment |
| 4 | other comment |
| 6 | other comment |
| null | other comment |
| 7 | some comment |
| null | some comment |
| 9 | null |
SELECT 12