I have this table in Postgres:
id | name | city
----+-------+-----------
2 | Anna | Paris
3 | James |
1 | Bob | Berlin
And I want to reorder the table itself, not the output of an SELECT statement, to this:
id | name | city
----+-------+-----------
1 | Bob | Berlin
2 | Anna | Paris
3 | James |
It is difficult to google this, because I only get shown the order by command for the select statement^^