sql update 语句

update语句是用于修改表的数据的,

update 表名 set 字段1=值1 where 条件1

 

UPDATE Person SET Name = 'll' WHERE Name = '123' 

 

你可能感兴趣的:(java,sql)