0
where文でエイリアスを使用することはできません。しかし、私はどのようにこのクエリを書き直すことができますか?カラムリファレンス 'name'があいまいです
SELECT
CASE
WHEN app_reports_mgmt.reports.rid = app_reports_mgmt.report_template.rid THEN
app_reports_mgmt.report_template.name
ELSE app_reports_mgmt.reports.name
END AS name
FROM app_reports_mgmt.reports left join app_reports_mgmt.report_template on app_reports_mgmt.reports.rid = app_reports_mgmt.report_template.rid
where LOWER(name) LIKE LOWER('%daily%') and app_reports_mgmt.reports.report_status = 'Active' order by name
おかげでたくさんの仲間を! – Odinovsky