mysql语法如何根据条件查询结果并更新数据

2024年10月07日 建站教程

语法如下:

update table_name set field1=value1, field2=value2, ... where condition;

示例如下:

update student set score=60 where age<=18;

//根据年龄更新成绩

本文链接:http://so.lmcjl.com/news/14841/

展开阅读全文
相关内容