14 lines
229 B
MySQL
14 lines
229 B
MySQL
|
SELECT
|
||
|
id,
|
||
|
project_type as "project_type: _",
|
||
|
project_condition as "project_condition: _",
|
||
|
agent_id,
|
||
|
location_id,
|
||
|
title,
|
||
|
description,
|
||
|
admin_tag,
|
||
|
floors,
|
||
|
media as "media: _",
|
||
|
time_created,
|
||
|
last_updated
|
||
|
FROM project WHERE id = $1;
|