DML的具体内容
1.插入数据
名字 | SQL语句 | 注意说明 |
---|---|---|
完全插入 | insert into 表名 (列名1,列名2,...) values(列值1,列值2,.....); | 在表名后给出要插入的列名,在values后面给出列值,值得顺序和个数必须与前面指定的列对应。 |
不完全插入 | insert into 表名 (列名1) values(列值1); | 没有指定的列等同于插入null值 |
不指定列名的完全插入 | insert into 表名 values(列值1,列值2,列值3); | 1:没有给出要插入的列,那么表示插入所有列。2:值得个数必须是该表列的个数3:值的顺序,必须与表创建时给出的列顺序相同 |
2.删除数据
名字 | SQL | 语句解释 |
---|---|---|
删除数据 | delete from 表名 [where 条件]; | 删除表的数据,不删除表结构,指定条件,只删除指定的数据 |
删除数据 | truncate table 表名; | truncate 是DDL语句,它是删除整个表,在create这个表,从而达到删除表里数据,只保留表结构,并且无法回滚。 |
3.修改数据
名字 | SQL语句 |
---|---|
更新修改数据 | update 表名 set 列名1=列值1,列名2=列值2,....[where 条件] |
注释:条件必须是一个boolean类型的值或表达式:例如:update t_person set gender=‘男’,age=age+1 where name='ZhangSan';|
运算符名
字解 | 解释 | 例子 |
---|---|---|
=、!=、>、<、>=、<=、 | 等于,不等于,大于、小于、大于等于、小于等于,等于在set后,相当于赋值,在其他是等于的意思 | update 表名 set age=18 where name='ZhangSan'; |
between....and | 介于什么之间 例子: where age>=27 and age<=28 等同于 where age between 27 and 28update | 表名 set age=age+1 where age>=27 and age<=28 ; |
in(....) | 和括号里面的元素,有一个相同的即可,相当于 或or | update 表名 set age=36 where name in ('Zhangsan','LiSi'); |
is null | 检查是否有空值 | update 表名 set age=age+1 where age is null; |
not | 去反 | update 表名 set age=age+1 where age is not null; |
or | 或 | select 列名,列名 from 表名 where 列名 = '数据' or 列名 = '数据'; |
and | 并且 | select 列名,列名 from 表名 where 列名 =‘数据’ and 列名 =‘数据'; |
本文来自 biubiuqiu 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/qq_39852472/article/details/80594241?utm_source=copy
网友评论