クエリ発行エラー You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')
GROUP BY blogger_id
) a
INN' at line 13
SELECT a.blogger_id,
a.blogger_newlypost_id,
b.post_date,
b.post_title,
b.post_detail,
b.link_url
FROM (SELECT blogger_id,
MAX(blogger_newlypost_id) AS blogger_newlypost_id,
MAX(post_date) AS post_date
FROM dt_blogger_newlypost
WHERE delete_flag = 0
AND post_date BETWEEN date_add(current_date, interval -1 month) AND current_timestamp
AND blogger_id IN ()
GROUP BY blogger_id
) a
INNER JOIN dt_blogger_newlypost b
ON
a.blogger_id = b.blogger_id
AND
a.post_date = b.post_date