update table set 名字='李四' where 名字='张三' 注table 为表的名字,学sql一边看书,一边上机练习,希望对你有所帮助。
用replace函数
或者
update 表a
set 名字='李四'
where 名字='张三'
UPDATE 表 SET 名字=‘李四’ where 名字=‘张三’
update table
set name=‘李四'
where name=‘张三'
update 表名 set 列名=“李四” where 条件 <注:条件一般为ID 比如:Id=要修改的这一行的Id>