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

9 lines
171 B
SQL

SELECT
property_id,
price,
currency,
arrangement as "arrangement: _",
time_created,
last_updated
FROM property_arrangement
WHERE property_id = $1;