Start with one table:
SELECT
1
FROM
itd_admin.survey
Does this work?
If it does, add the next:
SELECT
branch.branch_sc,
survey.note
FROM
itd_admin.survey
JOIN incident ON incident.incident_id = survey.incident_id
If it works, keep adding one by one until CR throws the table not found error.
-Abhilash