[3/100]SQL语句全整理

SQL语句

一般操作

1.显示数据库

show databases;

2.显示当前mysql版本

show version();

3.连接数据库

mysql -u root -p******

数据库的操作

1.创建数据库

create database xxx;
create database xxx charset=utf8;

2.删除数据库

drop database xxx;

3.使用数据库

select database();
use xxx;

4.数据库权限

待补充!!

数据表的使用

1.显示数据库中所有的表

show tables;

2.创建数据库表

create table x1table(id int, name varchar(30));
create table x2table(id int primary key not null auto_increment, name varchar(30));

显示数据库表结构
设置约束

create table x3table(
    id int unsigned not null auto_increment primary key,
    name varchar(30),
    age tinyint unsigned default 0,
    high decimal(5,2),
    gender enum("男","女","中性","保密") default "保密",
    cls_id int unsigned
);

3.显示数据库表结构

desc x1table;

4.删除数据表

drop table x1table;

修改表结构

1.增加字段

alter table x3table add birthday datetime;

2.修改字段

alter table x3table modify birthday date;

3.修改字段名

alter table x3table change birthday birth date default "2000-01-01";

4.删除字段名

alter table x3table drop high;

数据类型

1.数字类型

数字类型

2.字符串类型
字符串类型

3.时间类型

时间类型

4.bit类型

数据的增删改查(CURD)

增,插入数据

--全部插入
insert into x3table values(0, "老王", 18, 188.88, "男", 0);
--部分插入
insert into x3table (name,gender) values ("金莲", "女");
--批量插入
insert into x3table (name,gender) values ("金莲", "女"), ("大乔","女");

修改数据

update x3table set age=23, gender=1 where id =3;

查询

--查询所有列
select * from x3table;
--查询条件(and 和 or 和 not)
select * from x3table where name="老王";
select * from x3table where id>2;
select * from x3table where id>2 and id<10;
--查询条件之 in
select * from x3table where id in (12, 15, 19);
select * from x3table where id not  in (12, 15, 19);
--查询条件之 between ... and ...
select * from x3table where id between 12 and 22;
select * from x3table where id not between 12 and 22;
--查询条件之判断空
select * from x3table where birth is null;
select * from x3table where birth is not null;
--查询指定列
select name,gender from x3table;
select name as 姓名,gender as 性别 from x3table;
select x.name x.gender from x3table as x;
--消除重复行
select distinct gender from x3table;
--模糊查询(like %替换1个或多个 _替换1个)
select * from x3table where name like "%老%";
--模糊查询之rlike,正则表达式
select * from x3table where name rikie "^小.*";
--排序
select * from x3table order by age asc;
select * from x3table order by age desc;
select * from x3table order by age desc, id desc;
--聚合函数(count sum max min avg 和 round)
select count(id) from x3table; --返回总行数
select max(age) from x3table; --返回最大值
select avg(age) from x3table; --返回平均值
select round(sum(age)/count(id), 2) from x3table; --保留小数点位数
--分组 group by
select avg(age), gender from x3table group by gender;  --要跟聚合一起用
select gender, group_concat(name,"_",id,"_",age) from x3table group by gender;  --group_concat
select gender, group_concat(name,"_",id,"_",age), avg(age) from x3table group by gender having avg(age)>22;  --having对查出来点结果进行条件判断
--分页
select * from x3table limit 3;  --limit 个数
select * from x3table limit 0, 5;  --limit(第N页-1)*每页的个数,每页的个数
select * from x3table limit 1, 5;  --limit(第N页-1)*每页的个数,每页的个数
--连接查询
--内连接
select * from students inner join classes on students.cls_id = classes.id;
--左连接
select * from students as s left join classes as c on s.clsid = c.id;  --右连接把两个表点顺序换下就行
--子查询
select * from student where height = (select max(height) from students);

group by 和 group_concat

删除

delete from x3table where id=3;

其他

数据库引擎

主要有两种:MyISAM和InnoDB,主要区别是InnoDB支持事务处理与外键和行级锁。

show create table x3table;

返回数据库表信息

猜你喜欢

转载自www.cnblogs.com/j44p5/p/12380760.html