duanduo7400 2015-06-11 11:41
浏览 41
已采纳

MySQLi事件在一定时间后删除行

I want users on my page to verify thier accounts (email) in one day. If a user isn't verified yet the datetime (date) is set to something like 0000-03-23 15:45:56 (the year is 0000 - I know that this causes problems in new years eve).

Event: (every hour)

DELETE FROM users WHERE SUBSTR(date, 0, 4)='0000' AND DAY(TIMEDIFF(NOW(), date)) >= 1

The event isn't working so i've created this test query:

$resultOne = $mysqli->query("SHOW COLUMNS FROM users WHERE SUBSTR(date, 0, 4)='0000'")or die($mysqli->error);
$resultTwo = $mysqli->query("SHOW COLUMNS FROM users WHERE DAY(TIMEDIFF(NOW(), date)) >= 1")or die($mysqli->error);

Now i'm getting this error message:

Unknown column 'date' in 'where clause'

Questions:

  • Why isn't it working?
  • Which better ways to verify users do you recomment?

Thank you! - Minding

  • 写回答

1条回答 默认 最新

  • drfu80954 2015-06-11 12:37
    关注

    Ok, there where two problems here:

    First: test query

    The "SHOW COLUMNS" didn't accept my where clause, but "SELECT *" did.

    Second: SUBSTR()

    I don't know exectly why, but the MySQLi SUBSTR has to be:

    SUBSTR(date, 1, 4)='0000'
    

    Not like in PHP:

    substr($user['date'], 0, 4) === '0000'
    

    One last problem:

    New users are deleted nearly instantly (every hour -> test: every minute) and not after 1 day as they should.

    EDIT:

    I just want to share my final event code, in case somebody needs it:

    DELETE FROM users WHERE SUBSTR(date, 1, 4)='0000' AND HOUR(TIMEDIFF(NOW(), CONCAT(SUBSTR(NOW(), 1, 5), SUBSTR(date, 5)))) >= 24
    

    Thank you all for your comments! - Minding

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度