nidus-sync/db/sql/publicreport_publicid_table.sql
Eli Ribble 57191fa222
Alter report submission page to request reporter name and consent
This also adds the new mechanism for handling notifications on reports
2026-02-06 15:39:49 +00:00

28 lines
506 B
SQL

-- PublicreportIDTable
WITH found_tables AS (
SELECT
'nuisance' as table_name,
id
FROM publicreport.nuisance
WHERE public_id = $1
UNION ALL
SELECT
'pool' as table_name,
id
FROM publicreport.pool
WHERE public_id = $1
UNION ALL
SELECT 'quick' as table_name,
id
FROM publicreport.quick
WHERE public_id = $1
)
SELECT
EXISTS (SELECT 1 FROM found_tables) as exists_somewhere,
array_agg(table_name) as found_in_tables,
array_agg(id) as report_ids
FROM found_tables;