gpt4 book ai didi

zf2 表网关中的 postgresql 返回

转载 作者:行者123 更新时间:2023-11-29 13:00:49 24 4
gpt4 key购买 nike

如何在通过表网关插入时添加 RETURNING 子句?

INSERT INTO users (name, age) VALUES ('Liszt', 10) RETURNING id;

最佳答案

$dataArray = array('name'=> 'Liszt','age' => 10);
$this->tableGateway->insert($dataArray);
$userId = $this->tableGateway->lastInsertValue;

另一种方法是:

$userId = $this->tableGateway->getLastInsertValue();

关于zf2 表网关中的 postgresql 返回,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30566992/

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