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

9 lines
175 B
MySQL
Raw Normal View History

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