我刚刚写了一个查询,它完美地显示了来自 mysql 的数据,但是当我运行相同的查询一段时间后,输出显示为“MySQL 返回了一个空的结果集(即零行)”。
我不知道为什么会这样。我正在做两个表的 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';