インシデント (id、日付) リマインダー (incidentID、タイプ) の 2 つのテーブルがあります。
そして、私が考えているのは、4つ以上のreminder.type = 15がある場合にのみ、incident.idを取得したいです
SELECT incident.id
FROM incident
INNER JOIN reminder ON incident.id = reminder.incidentid
HAVING COUNT (reminder.remindertype = "something") >5
GROUP BY incident.incidentcode
私が得るエラーは
6 行目: '=' 付近の構文が正しくありません。
私に何ができる?