mysql增删改查
1、查看插入表数据
select * from 表名
2、(1)增 insert into
(1)完全插入
insert into 表名 values 插入的内容
(2)选择性的插入
insert into 表名 (选择要插入的字段名)values(照应顺序插入相应的内容)
(3)多行插入
insert into 表名(选择要插入的字段名) values(相应内容),(相应内容);
(2)删
delete from 表名 where (条件)#一点要是按主键删除,因为主键具有唯一性。
(3)改
update 表名 set 字段名=改之后的名字 where 条件#主键
(4)查
select * from 表名 where 条件
将一个表数据插入到另一个表中:
insert into 要插入到表(列名,列名)select 列名,列名 from 插入原的表
mysql结尾加分号结束;
**MYSQL检索:
1、检索不同的行
select distinct 字段名 from 表名
2、使用完全的限定表名
select * from 数据库名.表名
select 表名.列名 from 数据库名.表名
1、表数据的查询WHERE(过滤)
查询 例题:查询age=20的所有字段
select * from 表名 where age = 20;
2、查询在什么之间(包括边界值)
select * from 表名 where age btween 20 and 30;
3、空值查询
select * from 表名 where 列名 IS NULL
4、组合where子句(条件链接)
AND操作符:
select * from 表名 where 条件一 and 条件二
OR操作符(满足一个即可)
select * from 表名 where 条件一 or 条件二
****注意 and 和 or 一起使用时 and 的优先级较高,and先执行
5、IN操作符:
select * from 表名 where 列名 IN(180401,180402)
6、NOT操作符(取反):
select 列名 from 表名 where 列名 is not null;
select 列名 from 表名 where not 列名= 20;
7、通配符
%代表任意字符出现的任意次数
例题:查看以李开头的名字
select name from 表名 where name like '李%';
—下划线代表只能有一个的字符。