gpt4 book ai didi

php - 如何使用带有唯一 ID 的 insert_batch

转载 作者:行者123 更新时间:2023-11-29 08:47:43 25 4
gpt4 key购买 nike

我正在使用 codeignitor 的插入批处理功能向表中插入多行。

    $this->db->insert_batch('table', $sizes);

我的 $sizes 数组看起来像这样

 $sizes = array(
array(
'size' => 'M' ,
'product' => 'Hat'
),
array(
'size' => 'L' ,
'product' => 'Hat'
)
);

我打算将单独的行添加到我的数据库表中,其中包含这些值以及唯一的 ID,但是当添加每个嵌套数组时,它会向 id 字段添加 0,而不是唯一的 ID

我收到错误“ key “id”的条目“0”重复”

解决这个问题的最佳方法是什么?感谢您的阅读!

最佳答案

使用 AUTO_INCRMENT 创建您的唯一列

关于php - 如何使用带有唯一 ID 的 insert_batch,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12145592/

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