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.
php的cron任务,如何在“id”=20时随机选择一行,将该行转移到另一个表然后截断旧表
有人可以指导我如何编写这种类型的代码吗?
它是 mysql,id 是由 phpmysql auto_increment 设置的对不起!
什么时候id你auto_increment不能随机选择一行,因为你只选择了一行。默认情况下,mysql 的 PHP 扩展不接受多个语句。所以当我理解你的正确时,它会用两个 SQL 语句来完成
id
auto_increment
INSERT INTO <table2> (<cols>) SELECT <cols> FROM <table1> WHERE id=20 TRUNCATE TABLE <table2>