15 lines
192 B
MySQL
15 lines
192 B
MySQL
|
SELECT
|
||
|
id,
|
||
|
project_id,
|
||
|
price_usd,
|
||
|
unit_type as "unit_type: _",
|
||
|
rooms,
|
||
|
bathrooms,
|
||
|
area,
|
||
|
description,
|
||
|
media as "media: _",
|
||
|
admin_tag,
|
||
|
time_created,
|
||
|
last_updated
|
||
|
FROM unit
|
||
|
WHERE project_id = $1;
|