これが私の問題です。このリクエストがあります(動作します)がTO_DAYS(notification.created_at)
、ユーザーの最新のアクションに置き換えたいと思います。
使用しようとしましTO_DAYS(MAX(notification.created_at))
たが、戻ります"#1111 - Invalid use of group function"
。
SELECT user.email, notification.type, max(notification.created_at) AS date
FROM user, notification
WHERE (user.id = notification.user_id) AND (TO_DAYS(NOW()) - TO_DAYS(notification.created_at) >= 30)
GROUP BY user.id
ORDER BY `date` DESC