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

16 lines
295 B
MySQL
Raw Normal View History

INSERT INTO property_arrangement (
property_id,
2023-05-08 18:28:19 +00:00
price,
currency,
arrangement,
time_created,
last_updated
) VALUES (
$1, $2, $3, $4, $5, $5
) RETURNING
property_id,
2023-05-08 18:28:19 +00:00
price,
currency,
arrangement as "arrangement: _",
time_created,
last_updated;