gpt4 book ai didi

php - 如何使用 odbc_exec 执行多个 php 查询

转载 作者:行者123 更新时间:2023-11-30 21:48:03 25 4
gpt4 key购买 nike

我正在使用以下代码将多条记录插入到 mysql 中。但是,在插入 mysql 之后,我需要将其插入到普遍的 sql 中以供 pastel 使用。如果要插入的记录只是一个,我使用 odbc_exec 效果很好。我需要帮助。

$query .= '
INSERT INTO supplier_invoice
(inv_number, SupplCode, Item_No, product_name,
qty, unitPrice, subtotal, inv_dt, created_by)
VALUES("'.$inv_No.'", "'.$supp_code.'", "'.$itNo.'", "'.$itName.'",
"'.$qqty.'", "'.$cost.'", "'.$ttotal.'", "'.$inv_dt.'",
"'.$submitted_by.'");
';

最佳答案

您应该使用其他方式来考虑查询:

开始时:

$query = 'INSERT INTO supplier_invoice
(inv_number, SupplCode, Item_No, product_name,
qty, unitPrice, subtotal, inv_dt, created_by)
VALUES ';
$first_query = true;

在循环中:

if ($first_query) {
$first_query = false;
} else {
$quetry .= ',';
}
$query .= '("'.$inv_No.'", "'.$supp_code.'", "'.$itNo.'", "'.$itName.'",
"'.$qqty.'", "'.$cost.'", "'.$ttotal.'", "'.$inv_dt.'",
"'.$submitted_by.'")';

关于php - 如何使用 odbc_exec 执行多个 php 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48543306/

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