sql >> Database >  >> RDS >> PostgreSQL

Postgresql-update met join

Algemene updatesyntaxis:

[ WITH [ RECURSIVE ] with_query [, ...] ]
UPDATE [ ONLY ] table [ [ AS ] alias ]
    SET { column = { expression | DEFAULT } |
          ( column [, ...] ) = ( { expression | DEFAULT } [, ...] ) } [, ...]
    [ FROM from_list ]
    [ WHERE condition | WHERE CURRENT OF cursor_name ]
    [ RETURNING * | output_expression [ [ AS ] output_name ] [, ...] ]

Oplossing voor uw probleem:

UPDATE customers AS c
SET cutoffstop = cutoffstop + 432000
FROM bluemedia as b
WHERE c.id = b.customerid
AND b.orderid = '217201807'

Voor meer informatie over UPDATE syntaxis volg de onderstaande link:

https://www.postgresql.org/docs/current/static/sql-update.html



  1. Voeg de tweede kolomwaarde samen als de eerste kolomwaarde hetzelfde is

  2. een afbeelding weergeven die is opgeslagen in een mysql-blob

  3. Voor Nvarchar (Max) krijg ik maar 4000 tekens in TSQL?

  4. Hoe duplicaten in de MySQL-tabel te verwijderen