sql表格中对已有行的某个单元格添加数据

如果我有如下的一个表格,怎么在Java程序中对id为7的行的后面的空格进行补充?
图片说明

java 语法问题, excuteUpdate()这里面别放参数。

你用修改的代码不就好了嘛update table_name set bluescreen=****,*******

insert into 表名(列名) values(你想添加的值);

或者就像我上面说的 update 表名 set 列名="你想输入的值" where bluescreen="你想改变那个单元格所在的行的bluescreen的值";

 update table1 set solve='gfdsgfdsgfds' where id='7'

运行后,会跳出这样的错误图片说明

对已有行的某个单元格添加数据 ,,只能update 那一行数据,
update 表名 set 属性名=‘属性值’ where id=7

update 表名 set solve=‘属性值’ where id=7