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.
我的表中有一个时间戳(2012-04-04 20:44:53),我想选择从当前时间开始超过 10.5 小时的所有记录。谢谢你的帮助
SELECT ... FROM ... WHERE yourtimestampfield <= (NOW() - INTERVAL 10.5 HOUR)