gpt4 book ai didi

mysql - 使用一张表中的多个字段更新 SQL 语句

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

我正在尝试仅为一个表中的许多列编写一条更新 SQL 语句。例如产品表。在产品表中,有许多列,如名称、描述、价格、数量、图像、类别、状态。

所以我得出了这个 SQL 语句:

String sql = "UPDATE sm_product SET productDescription = '" + desc +
"' , productPrice = ' + price + ', productQuantity = ' + quantity +
', productImage = '" + image + "', productCategory = '" + category +
'" WHERE productName = '" + name + "'";

但是,编译器告诉我存在未封闭的字 rune 字,而不是语句。我想知道我应该如何修复这个 SQL 语句,因为我只有一个表要更新。但在该表中,有很多字段。

提前致谢。

最佳答案

您的报价似乎有问题。试试这个:

String sql = "UPDATE sm_product SET productDescription = '" + desc +
"' , productPrice = " + price + ", productQuantity = " + quantity +
", productImage = '" + image + "', productCategory = '" + category +
"' WHERE productName = '" + name + "'";

假设价格和数量是数字,其余是字符串。

关于mysql - 使用一张表中的多个字段更新 SQL 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17239053/

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