gpt4 book ai didi

php mysql 插入 (max(id)+1)

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

我有一个表 image_tb,它有 3 个字段,id,images,link(id 是 auto auto_increment),这是我的插入代码:

mysql_query("
insert into image_tb
(images,link)
select
'".(max(id)+1).".jpeg','".$link."'
from image_tb
");

它返回:

Warning: max(): When only one parameter is given, it must be an array

如何修改?谢谢。

最佳答案

最好定义一个函数,通过这样的查询获取最后一个 id:“从 image_tb order by id desc limit 0,1 中选择 id”然后增加它,它的真实性。

关于php mysql 插入 (max(id)+1),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13620998/

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