php 的 Cron 任务,如何在“id”出现时随机选择一行= 20,将该行转移到另一个表,然后截断旧表
使用php的Cron任务,如何在“id”= 20时随机选择一行,将该行转移到另一个表,然后截断旧表
有人可以给我一些关于如何编写此类代码的指导吗?
它是mysql,id是由phpmysql auto_increment设置的,抱歉!
Cron task with php, how to randomly select a row when "id" = 20, transfer the row to another table and then truncate the old table
Can someone give me some direction on how to write this type of code?
it is mysql, id is set by phpmysql auto_increment sorry!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当
id
为auto_increment
时,您无法随机选择一行,因为您只选择一行。默认情况下,mysql 的 PHP 扩展不接受多个语句。所以当我理解正确时,它将通过两个 SQL 语句来完成When
id
isauto_increment
then you could not randomly select a row, because you select only one row. By default PHP extensions for mysql don't accept multiple statements. So when I understand you right it would be done with two SQL statements