我有两个表 Incident (id, date) Reminder (incidentID, type) inner join on event.id =reminder.incidentID
并且我只想在 event.id 有超过 4 个提醒时才使用它。type = 15 我认为是
SELECT incident.id
FROM incident
INNER JOIN reminder ON incident.id = reminder.incidentid
HAVING COUNT (reminder.remindertype = "something") >5
GROUP BY incident.incidentcode
我得到的错误是
第 6 行:'=' 附近的语法不正确。
我能做些什么?