Zasadniczo chcę to zrobić:
update vehicles_vehicle v
join shipments_shipment s on v.shipment_id=s.id
set v.price=s.price_per_vehicle;
Jestem pewien, że działałoby to w MySQL (moim tle), ale wydaje się, że nie działa w Postgresie. Występuje błąd:
ERROR: syntax error at or near "join"
LINE 1: update vehicles_vehicle v join shipments_shipment s on v.shi...
^
Z pewnością jest na to łatwy sposób, ale nie mogę znaleźć właściwej składni. Jak więc napisać to w PostgreSQL?
vehicles_*
tabele widoków i kilka shipments_*
tabel.