2026-02-04 16:07:36 +00:00
|
|
|
-- PublicreportPublicIDSuggestion
|
|
|
|
|
SELECT
|
|
|
|
|
'nuisance' AS table_name,
|
|
|
|
|
public_id,
|
|
|
|
|
location
|
|
|
|
|
FROM
|
|
|
|
|
publicreport.nuisance
|
|
|
|
|
WHERE
|
|
|
|
|
public_id LIKE $1
|
|
|
|
|
|
|
|
|
|
UNION ALL
|
|
|
|
|
|
|
|
|
|
SELECT
|
2026-03-09 18:02:22 +00:00
|
|
|
'water' AS table_name,
|
2026-02-04 16:07:36 +00:00
|
|
|
public_id,
|
|
|
|
|
location
|
|
|
|
|
FROM
|
2026-03-09 18:02:22 +00:00
|
|
|
publicreport.water
|
2026-02-04 16:07:36 +00:00
|
|
|
WHERE
|
|
|
|
|
public_id LIKE $1
|
|
|
|
|
ORDER BY
|
|
|
|
|
public_id;
|