14 lines
184 B
MySQL
14 lines
184 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 id = $1;
|