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.
我有一个名为konkurrencercolumn的表slutter,它的数据类型是datetime。
konkurrencer
slutter
datetime
如何从行“结束”1 小时的表中选择所有内容?
假设我在那张桌子上有奖。它在 1 小时后结束,因此它必须输出该行。如果该行在 2 小时内结束,则不应输出它。只有1小时。
但是怎么做?
使用这个查询。
SELECT * FROM konkurrencer WHERE slutter < DATE_ADD(NOW(), INTERVAL 1 HOUR) AND slutter >= NOW()
像这样试试
<?php $time = time() - (60*60); //Gives you last hour $sql = "SELECT * FROM konkurrencer WHERE slutter = $time"; ?>