gpt4 book ai didi

mysql - 插入请求后获取id值

转载 作者:行者123 更新时间:2023-11-29 21:05:38 26 4
gpt4 key购买 nike

当我在数据库中插入一行时,我需要获取 id 的值。

$query = DB::insert('scenarioeco', array('utilisateur_id', 'nom', 'prixAchatN', 'prixAchatP', 'prixAchatK', 'prixSemence', ))
->values($arrayData);

$query->execute();

由于 id 是自动递增的,因此我不会将其直接与请求一起插入。但要进行其他查询,我需要这个值。有没有办法用 Kohana 做到这一点。 (获取表中最后一行的其他内容)提前致谢!

最佳答案

$query = DB::insert('scenarioeco', array('utilisateur_id', 'nom', 'prixAchatN', 'prixAchatP', 'prixAchatK', 'prixSemence', ))
->values($arrayData);

$result = $query->execute();
echo $result[0]; //Output is the last inserted id

关于mysql - 插入请求后获取id值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36842707/

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