0

我使用 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(因此是操作方法)。

4

1 回答 1

1

You don't need to use the id. Try this.

update table set description = 'fluffy' where color = 'blue';
于 2013-10-17T23:01:18.910 回答