mysql笔记4之数据操作
Posted L的存在
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql笔记4之数据操作相关的知识,希望对你有一定的参考价值。
1修改数据
插入:insert into stu(id,name,age,addr) values(2,"李四",44,"重庆");
2修改某一列
updata stu set age = 23 where name = "李四"
3修改多个列
updata stu set age = 40,addr="湖北" where name = "李四"
以上是关于mysql笔记4之数据操作的主要内容,如果未能解决你的问题,请参考以下文章