gpt4 book ai didi

php - 在 DELETE 语句中指定 'older than'

转载 作者:行者123 更新时间:2023-12-01 00:26:03 26 4
gpt4 key购买 nike

我有一个查询,我想用它来删除“已查看”列日期时间值超过 24 小时的数据行。我怎样才能用一个查询来做到这一点?是否可以?

这是我目前所拥有的:

$delete_expired_notifications_query= "DELETE FROM notifications WHERE user_id= 
'".$u_id."' AND viewed (some code that says older than 24hrs)";
mysqli_query($connect, $delete_expired_notifications_query);

最佳答案

假设 viewed 是一个 MySQL 时间类型(它应该是):

... AND viewed < NOW() - INTERVAL 24 HOUR

关于php - 在 DELETE 语句中指定 'older than',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14416311/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com