show databases;
a.创建数据库
create databases 数据库名称;
b.创建数据库(判断,如果不存在则创建)
create databases if not exists 数据库名称;
a.删除数据库
drop databases 数据库名称;
b.删除数据库(判断,如果存在则删除)
drop databases if not exists 数据库名称;
a.查看当前使用数据库
select databases();
b.使用数据库
use 数据库名称;
create table 表名(
字段名1 数据类型1,
字段名2 数据类型2,
字段名3 数据类型3,
.................
.................
.................
);
a.查询当前数据库下的所有表名称
show tables;
b.查询表结构
desc 表名称;
a.修改表名
alter table 表名 rename to 新表名;
b.添加一列
alter table 表名 add 列名 数据类型;
c.修改数据类型
alter table 表名 modify 列名 新数据类型;
d.修改列名和数据类型
alter table 表名 change 列名 新列名 新数据类型;
e.删除列
alter table 表名 drop 列名;
drop table 表名;
--条件查询
--查询年龄>40
select * from stu where age>40;
--查询年龄大于40小于60
select * from stu where age>40 && age<60;
select * from stu where age>40 and age<60;
select * from stu where age between 20 and 60;
--查询出生日期从1990-2000年
select * from stu where hire_date between 1890-00-01 and 1990-12-01;
--查询年龄为64
select * from stu where age=64;
--查询年龄不为64
select * from stu where age!=64;
--查询年龄为44,45,64
select * from stu where age=64 || age=45 || age=44;
select * from stu where age=64 or age=45 or age=44;
select * from stu where age in (44,45,64);
--查询英语成绩为null
select * from stu where english is null;
--模糊查询
--查询姓张的
select * from stu where name like '张%';
--查询名字第二个字是奎的
select * from stu where name like '_奎%';
--查询名字中包含飞的
select * from stu where name like '%飞%';
--排序查询
--按照年龄升序排序
select * from stu order by age asc;
--按照数学成绩降序排序
select * from stu order by math desc;
--按照数学成绩降序排序,如果相等按照英语成绩升序排序
select * from stu order by math desc,english asc;
--聚合函数
--查询一共有多少人,counto统计列名不能为null,可以是主键或*
select count(id) from stu;
select count(*) from stu;
--查询数学成绩最高分
select max(math) from stu;
--查询数学成绩最低分
select min(math) from stu;
--查询数学成绩总分
select sum(math) from stu;
--查询数学成绩平均分
select avg(math) from stu;
--查询英语成绩最低分(因为英语成绩中有个为null)null不参与聚合函数运算
select min(english) from stu;
--分组查询
--查询男同学和女同学的数学平均分
select sex,avg(math) from stu group by sex;
--查询男同学和女同学的数学平均分,以及各自的人数
select sex,avg(math),count(*) from stu group by sex;
--查询男同学和女同学的数学平均分,以及各自的人数,要求分数大于60的进行分组
select sex,avg(math),count(*) from stu where math>60 group by sex;
--查询男同学和女同学的数学平均分,以及各自的人数,要求分数大于70的进行分组,分组后人数大于3
select sex,avg(math),count(*) from stu where math>70 group by sex having count(*) >3;
--分页查询
--从0开始查询,查询三条数据
select * from stu limit 0,3;
--每页查询三条数据,查询第一页数据
select * from stu limit 0,3;
--每页查询三条数据,查询第一页数据
select * from stu limit 3,3;
每页查询三条数据,查询第一页数据
select * from stu limit 6,3;
注意:起始索引=(当前页码-1)*每页条数
create table emp(
id int primary key auto_increment, --非空唯一,自增
ename varchar(50) not null unique, --非空唯一
joindate date not null, --非空
salary double(7,2) not null, --非空
bonus double(7,2) default 0 --
);
--多表查询
select * from dept,emp;
--消除无效数据
--隐式内连接
select * from emp,dept where emp.dep_id =dept.did;
--查询emp表的name,gender,dept的dname
select emp.name,emp.gender,dept.dname from emp,dept where emp.dep_id =dept.did;
--给表起别名
select e.name,e.gender,d.dname from emp e,dept d where e.dep_id =d.did;
--显示内连接
select * from emp inner join dept on emp.dep_id =dept.did;
--join可以省略
select * from emp inner join dept on emp.dep_id =dept.did;
--左外连接
select * from emp left join dept on emp.dep_id =dept.did;
--右外连接
select * from emp right join dept on emp.dep_id =dept.did;
案例:
--子查询
--单行单列
--查询高于猪八戒的工资
select salary from emp where name='猪八戒';
select * from emp where salary>(select salary from emp where name='猪八戒');
--多行单列
--查询财务部和市场部的所有人信息
select did from dept where dname='财务部';
select * from emp where dep_id in(select did from dept where dname='财务部' or dname='市场部');
--多行多列
--查询入职日期是2011-11-11之后的员工信息和部门信息
select * from emp where join_date>'2011-11-11';
select * from (select * from emp where join_date>'2011-11-11') t,dept where t.dep_id =dept.did;