博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MySQL数据库之DML(数据操作语言)
阅读量:5064 次
发布时间:2019-06-12

本文共 1699 字,大约阅读时间需要 5 分钟。

对表记录的增删改

1.MySQL之DML创建数据表user

create table user(id int unsigned not null auto_increment primary key,user_name varchar(20) not null,password char(32) not null,email varchar(50) not null,mobile char(11) not null,fee decimal(10,2) not null default 0.00,age tinyint(3) unsigned not null);

查user表中的数据:

select * from user;

2.MySQL之DML插入数据库的几种方法

insert into 表名(列1,列2,......) values(列值1,列值2,......);其中,列和值是一一对应的;

法一:insert into user(user_name,password,email,mobile,fee,age) values('jack',md5('123456'),'jack@163.com','13045678911',123.11,29);法二:insert into user(user_name,email) values('jack','jack@163.com'); 法三:insert into user values(3,'jack2',md5('1234562'),'jack2@163.com','13045678900',13.01,25);

注意:

(1)如果sql_mode设置为STRICT_TRANS_TABLE,方法二会出错,因为在该模式下,如果一个值不能插入到一个事务表中,则中断当前的操作,对非事务表不做任何限制,即该模式下为严格模式。具体可看:;

(2)

3.

4.MySQL之DML数据的更新

update 表名 set lie1=列值1,列2=列值2 where 条件;

注意,不加where条件会修改所有的记录

修改前的user表:

(1)执行以下更新命令后:

update user set age=50 where id=2;

user表更新成:

(2)执行以下更新命令后:

update user set fee=11.10 where fee=0.00;

user表更新成:

(3)执行以下更新命令后:

update user set user_name='zhang' where user_name!='lidehua';

user表更新成:

(4)执行以下更新命令后:

update user set email='hehe@163.com' where email='';

user表更新成:

(5)执行以下更新命令后:

update user set user_name='wang' where id in(1,3);

user表更新成:

(6)执行以下更新命令后:

update user set mobile='88888888888' where id between 2 and 3;

user表更新成:

(7)执行以下更新命令后:

update user set password=md5('456789'),mobile='13078945612',age=41 where id=3;

user表更新成:

 5.MySQL之DML数据的删除

(1)delete from 表名 where 条件;注意:不加where会删除所有的记录

(2)truncate 表名;注:是DDL的

区别:

truncate将表清空了,插入数据时id会从头开始排;用delete删除整个表或者某一行数据,删除的id值仍被占用,插入数据时,id会紧接着删掉的id值进行递增;

truncate适用于删除垃圾数据;

转载于:https://www.cnblogs.com/yuehouse/p/11183995.html

你可能感兴趣的文章
src与href的区别
查看>>
ABAP工作区,内表,标题行的定义和区别
查看>>
《xxx重大需求征集系统的》可用性和可修改性战术分析
查看>>
Python 中 创建类方法为什么要加self
查看>>
关于indexOf的使用
查看>>
【转】JS生成 UUID的四种方法
查看>>
英语单词
查看>>
centos6.8下安装matlab2009(图片转帖)
查看>>
Mongo自动备份
查看>>
求助大神!怎样批量删除数据库表中某个字段中同样的一段字符!
查看>>
VMWARE虚拟机无法访问的三种方法分析
查看>>
enq: SQ - contention
查看>>
cer证书签名验证
查看>>
ant 安装
查看>>
新手Python第一天(接触)
查看>>
vue路由动态加载
查看>>
【原】UIWebView加载本地pdf、doc等文件
查看>>
iOS中ARC内部原理
查看>>
【bzoj1029】[JSOI2007]建筑抢修
查看>>
synchronized
查看>>