25 lines
428 B
SQL
25 lines
428 B
SQL
-- Code generated by BobGen psql v0.42.5. DO NOT EDIT.
|
|
-- This file is meant to be re-generated in place and/or deleted at any time.
|
|
|
|
-- PublicreportPublicIDSuggestion
|
|
SELECT
|
|
'nuisance' AS table_name,
|
|
public_id,
|
|
location
|
|
FROM
|
|
publicreport.nuisance
|
|
WHERE
|
|
public_id LIKE $1
|
|
|
|
UNION ALL
|
|
|
|
SELECT
|
|
'pool' AS table_name,
|
|
public_id,
|
|
location
|
|
FROM
|
|
publicreport.pool
|
|
WHERE
|
|
public_id LIKE $2
|
|
ORDER BY
|
|
public_id;
|