update 表名 set 列名=新值 where 条件
举例
有一张表 t
将tid=3的tname改成“传智联队”,查询语句如下:
update t set tname='传智联队' where tid=3;