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 数据库表中的一列以 Unix 格式存储日期。
我正在尝试检索日期晚于特定日期的所有行。如何编写查询来执行此操作?我想要类似的东西:
SELECT * FROM table_name WHERE date > "yyyy-mm-dd";
提前致谢。
利用FROM_UNIXTIME
FROM_UNIXTIME
SELECT * FROM table_name WHERE DATE(FROM_UNIXTIME(date)) > "yyyy-mm-dd";