realtor-lp-backend/sql/property_arrangement/update.sql

13 lines
260 B
MySQL
Raw Normal View History

UPDATE property_arrangement SET
2023-05-08 18:28:19 +00:00
price = $2,
currency = $3,
arrangement = $4,
last_updated = $5
WHERE property_id = $1
RETURNING
property_id,
2023-05-08 18:28:19 +00:00
price,
currency,
arrangement as "arrangement: _",
time_created,
last_updated;