By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
CREATE TABLE
INSERT 0 4
| id | article_id | content | lang | version |
|---|---|---|---|---|
| 1 | 1 | text | 1 | 1 |
| 2 | 1 | text | 2 | 1 |
| 3 | 2 | text | 3 | 1 |
| 4 | 3 | text | 1 | 2 |
SELECT 4
UPDATE 1
| id | article_id | content | lang | version |
|---|---|---|---|---|
| 1 | 1 | text | 1 | 1 |
| 2 | 1 | text | 2 | 2 |
| 3 | 2 | text | 3 | 1 |
| 4 | 3 | text | 1 | 2 |
SELECT 4