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.
我已存储php time()到创建字段的数据库表中。那个时间成功存储在我的数据库中。
php time()
现在我愿意编写一个查询,它只从该表中获取今天的记录。
我做过这样的事情,但没有工作strtotime("2012-12-12");
strtotime("2012-12-12");
例如:我已经将这个时间存储在 table 中1355209509。所以我想从mysql中检索这个日期的所有记录。
1355209509
您可以使用此查询 -
SELECT * FROM <table> WHERE DATE(FROM_UNIXTIME(<unix_time_column>)) = CURDATE()