Skip to content
Advertisement

UPDATE order in PostgreSQL

I have a mysql command:

and need the same command in Postgres, I get this error:

ERROR: syntax error at or near 'ORDER'

Advertisement

Answer

To update 10 first rows (that actually need the update):

FOR UPDATE (row level locks) are only needed to protect against concurrent write access. If your transaction is the only one writing to that table, you don’t need it.

If flag is defined NOT NULL, you can use WHERE flag <> 0.

Related answers with more explanation and links:

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement