gpt4 book ai didi

java - 根据同一行中的另一列更新 sql 列

转载 作者:行者123 更新时间:2023-11-29 13:31:09 25 4
gpt4 key购买 nike

我使用 JDBC 作为我的 servlet 并尝试操作我的数据库。

id | color | description |    
1 | blue | fasfsfafssf |
2 | red | afsafasfasf |

如何选择 color=blue 的所有行并根据 id 更改描述?现在,我有一些事情:

SELECT id, description FROM table WHERE color="blue"

String description = manipulate(resultset.getInt(id)) //resultset is from executing the query

现在如何用描述更新同一行的描述?

希望这是有道理的

编辑:问题是描述更改的方式将基于 ID(因此是操作方法)。

最佳答案

您不需要使用id。试试这个。

update table set description = 'fluffy' where color = 'blue';

关于java - 根据同一行中的另一列更新 sql 列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19438722/

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