Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道我是否可以用 mysql 做一个简单的布尔检查。我的意思是我可以做类似的事情
SELECT WHERE DATE(`2013-03-25 01:22:26`) = CURDATE()
只返回真或假?
或这种情况下的 php 等效项也可以,但我想学习这一点。为这样的目标使用 mysql 是不必要的吗?
只需删除该WHERE子句并在日期周围使用单引号即可。
WHERE
SELECT DATE('2013-03-25 01:22:26') = CURDATE()