mysql からのデータを完全に表示するクエリを作成しましたが、しばらくして同じクエリを実行すると、「MySQL が空の結果セット (ゼロ行) を返しました」と表示されます。
なぜそれが起こっているのかわかりません。2つのテーブルのINNER JOINを行っています。
SELECT
tbl_customer_conversation.follow_date,
tbl_customer_conversation.status,
tbl_customer_conversation.user_id
FROM
tbl_customer_conversation
INNER JOIN
tbl_lms_user
ON
tbl_customer_conversation.user_id=tbl_lms_user.user_id
where
tbl_customer_conversation.follow_date= DATE(NOW())
AND
tbl_lms_user.first_name = 'Be';