码迷,mamicode.com
首页 > 数据库 > 详细

Python学习第二十二课——Mysql 表记录的一些基本操作 (增删改)

时间:2020-02-19 17:17:06      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:表名   学习   code   字段修改   语法   int   rtm   销售部   操作   

记录基本操作:

增:(insert into)

基本语法:

insert into 表名(字段) values(对应字段的值);

例子1

insert into employee(id,name,age,salary) values(1,"憨憨",24,5000);   指定添加
insert into employee values(2,"憨憨",0,24,"技术部",5000); 对应添加
insert into employee set name="玫玫"; 

技术图片

 

 

 添加多条:

insert into employee(name,age,salary) values("憨憨",24,500),
("憨",24,5000),
("玫玫",24,50),
("阿妹",24,5); 添加多条

技术图片

 

 

 

 

 

删(delect from)

基本语法: delect from 表名 where 字段=“根据什么字段删除”

DELETE from employee where id=2;  删除一条 
DELETE from employee where id=2 or id=3; 删除多条

 

技术图片

 

 

 

 

 

改 (update set)

基本语法:update 表明 set 字段=“修改值” where 字段=“根据那个字段修改”

例子:

update employee set salary=20000 where id=1;
update employee set department="销售部" where name="玫玫";

技术图片

 

Python学习第二十二课——Mysql 表记录的一些基本操作 (增删改)

标签:表名   学习   code   字段修改   语法   int   rtm   销售部   操作   

原文地址:https://www.cnblogs.com/pyhan/p/12331816.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!