赞
踩
SHOW DATABASE;
CREATE DATABASE 数据库名称 CHARSET utf8 COLLATE utf8_general_ci;
DROP DATABASE 数据库名;
进入文件(数据库)
USE 数据库名;
show tables
describe 表名
show create table `表名`
create table `表名`(
字段 字段类型 comment 注释
)
示例:
create table user_list(
id int primary key comment "编号",
name varchar(50) comment "姓名",
age int comment "年龄",
gender varchar(1) comment "性别"
)comment "使用者列表";
alter table 表名 add 字段名 类型(长度) [comment注释] [约束]
示例:
alter table user_list add Nickname varchar(50) comment "绰号"
alter table 表名 modify 字段名 数据类型
示例:
alter table user_list MODIFY Nickname varchar(10)
alter table 表名 change 旧字段 新字段 类型
示例:
alter table user_list change Nickname nickname varchar(6)
alter table 表名 drop 字段名
示例:
alter table user_list drop nickname
alter table 表名 rename to 新表名
示例:
alter table user_list rename to User_List
-- 删除表
drop table [if exists]表名
-- 删除指定表,并且重新创建表
truncate table 表名
-- 给指定字段添加数据
insert into 表名(字段名1,字段名2)values(值1,值2)
-- 给全部字段添加数据
insert into 表名 values(值1,值2)
-- 批量添加数据
insert into 表名(字段1,字段2...)values(值1,值2)(值1,值2)
-- 将查找出来的数据加入表中
insert into 表名(字段1,字段2...)values select SELECT 字段1,字段2... FROM 表名
补充:
使用replace into来插入数据
replace into 首先尝试插入数据到表中,如果发现表中已经有此行数据(根据主键或者唯一索引判断)则先删除此行数据,然后插入新的数据;否则,直接插入新数据。,示例:
replace into examination_info(exam_id,tag,difficulty,duration,release_time)
values
(9003,'SQL', 'hard', 90, '2021-01-01 00:00:00')
update 表名 set 字段名1=值1,字段名2=值2 ... (where 条件)
示例:
update user_list
set name='luoyu',age=16,gender='男'
where name='fengxu';
delete 表名 where 条件
truncate 表名
示例:
delete from user_list where age is null
truncate exam_record
补充:
delete,drop,truncate的区别
1.DROP TABLE
清除数据并且销毁表,是一种数据库定义语言(DDL Data Definition Language), 执行后不能撤销,被删除表格的关系,索引,权限等等都会被永久删除。
2.TRUNCATE TABLE
只清除数据,保留表结构,列,权限,索引,视图,关系等等,相当于清零数据,是一种数据库定义语言(DDL Data Definition Language),执行后不能撤销。
3.DELETE TABLE
删除(符合某些条件的)数据,是一种数据操纵语言(DML Data Manipulation Language),执行后可以撤销。(还不太明白怎么撤销TT,在什么情况下可以撤销,求大神指点。
运行速度一般DROP最快,DELETE最慢,但是DELETE最安全。
DQL语法汇总:
select 字段列表
from 表名列表
where 条件列表
group by 分组字段列表
having 分组后条件列表
order by 排序字段列表
limit 分页参数
select 字段1,字段2,字段3 from 表名
select 字段1(as 别名),字段2,字段3 from 表名
-- 去重
select distinct 字段列表 from 表名列表
select 字段列表 from 表名列表 where 条件列表
count -- 统计数量
max -- 最大值
min -- 最小值
avg -- 求平均值
sum -- 求和
select 聚合函数(字段列表) from 表名
示例代码;
select avg(age) from emoplyee
在sql
语句中我们可以利用group by
来创建并且用having
来进行分组过滤
注意点
where
是分组前进行过滤,不满足where
条件,不参加分组,having
是分组后对结果进行过滤where
不能对聚合函数进行判断,但是having
可以语句模板:
select 目标字段
from 表名
(where 条件)
group by 分组
having 过滤条件
示例:
select count(*),workaddress
from emoplyee
where emoplyee.age<45
group by workaddress
having count(*)>=2
select 字段列表 from 表名列表 order by 字段1 排序方式,字段2 排序方式
补充
排序方式:
ASC:升序
DESC:降序
示例代码:
select * from emoplyee order by age ASC
select 字段列表 from 表名 limit 起始索引,查询记录数;
示例:
select * from emoplyee limit 4,3;
在讲解SQL语句的执行顺序之前我们可以再来看一下最开始我们所说的SQL语句的编写顺序:
select 字段列表
from 表名列表
where 条件列表
group by 分组字段列表
having 分组后条件列表
order by 排序字段列表
limit 分页参数
而它的执行顺序其实如下所示:
select 字段列表 -- 4
from 表名列表 -- 1
where 条件列表 -- 2
group by 分组字段列表 -- 3
having 分组后条件列表 -- 3
order by 排序字段列表 -- 5
limit 分页参数 -- 6
use mysql;
select * from user;
create user '用户名'@'主机名' identified by
alter user '用户名'@'主机名' identified with mysql_native_password by '1234';
drop user '用户名'@'主机名'
MySQL中定义了很多种权限,常用的主要有以下几种:
show grants for '用户名'@'主机名'
grant 权限列表 on 数据库.表名 to '用户名'@'主机名'
remove 权限列表 on 数据库.表名 from '用户名'@'主机名'
注意:多个权限之间使用逗号分隔
示例:
update emoplyee
set workno =lpad(workno,5,'0')
where 1=1;
常用的数值函数:
ceil(x) -- 向上取整
floor(x) -- 向下取整
mod(x,y) -- 返回x/y的余数
rand() -- 返回0-1的随机数
round(x,y) -- 返回x四舍五入的值,保留y位小数
示例函数:我们可以生成一个六位数的验证码
select round(rand()*100000,0)
curdate() -- 返回当前日期
curtime() -- 返回当前时间
now() -- 返回当前的时间与日期
year(date) -- 获取指定date的年
month(date) -- 获取指定date的月
day(date) -- 获取指定date的日
date_add(date,insert expr type) -- 返回一个时间间隔expr后的时间值
datediff(date1,date2) -- 返回两个日期间隔的天数
示例代码:
select curdate();
select curtime();
select datediff('2004-09-03','2000-01-01');
select now();
select YEAR(now());
select month(now());
select day(now());
select date_add(now(),INTERVAL 70 DAY );
if(value,t,f) -- 如果value为true返回t,否则f
ifnull(value1,value2) -- 如果value1不为空返回value1,否则value2
case when[val1]then[res1]...else[default] end -- 如果value1为真,返res1 ... 否则返回default默认值(参考switch语句)
case [expr] when [val1] then [res1] ... else[default] end -- (参考if-else语句)
约束指的是作用于表中字段的规则,用于限制表中数据
保证数据库中数据完整,正确且有效
not null -- 非空约束
unique -- 唯一约束
primary key -- 一行数据的唯一标识,要求不空白且唯一
default -- 默认约束(字段值未指定则使用默认值)
check -- 检查约束(保证字段满足某一条件)
foreign key -- 外键约束(多表联结时再仔细介绍)
示例:
create table my_list(
id int primary key auto_increment comment '主键',
name varchar(10) not null ,unique (name),
age int check(age>0 and age<=120),
status char(1) default '1',
gender char(1)
);
外键让两张表之间的数据建立连接,进而保证数据的一致与完整性,比如说员工表中有员工所属部门的编号,而对应编号的部门在另一张表上面。如下所示:
这时候我们就需要使用外键将它们连接在一起(注意:有外键的表是子表)
-- 第一种
create table 表名(
字段1 类型1
...
[constraint] 表名 add constraint 外键名称 foreign key(外键字段名) references 主表(主表列名)
);
-- 第二种
alter table 表名 add constraint 外键名称 foreign key(外键字段名) references 主表(主表列名)
示例代码:
alter table emoplyee add constraint emp_dept_id foreign key (dept_id) references dept(id);
alter table 表名 drop foreign key 外键名称
一般而言,外键的删除/更新状态主要有以下几种:
alter table 表名 add constraint 外键名称 foreign key (外键字段名) references 主表(主表列) on update 对应状态 on delete 对应状态;
备注 :mysql
所使用的引擎是Innodb
我们在开发的时候,需要对数据库的表结构进行设计,由于不同的情况与需求,我们需要分析并设计不同的表结构,同时由于各个表结构之间也存在着各种联系,基本上有以下几种结构:
实现:在多的一方建立外键,指向一的一方的外键
实现:
alter table employees add constraint emplpyee_dept foreign key (DepartmentID) references departments(DepartmentID);
实现:创建第三张中间表,中间表至少包含两个外键,用来关联两边主键
create table student( id int auto_increment primary key comment '主键', name varchar(10) not null comment '名字', no varchar(20) not null comment '学生编号' )comment '学生表'; create table course( id int auto_increment primary key comment '主键', name varchar(20) comment '课程名称' ) comment '课程表'; create table student_course( id int auto_increment primary key comment '主键', studentid int not null comment '学生编号', couseid int not null comment '课程编号', constraint fk_course foreign key (couseid) references course(id), constraint fk_student foreign key (studentid) references student(id) )comment '中间表'
应用场景:一般用于单表拆分,把基础字段放到一张表里面,其他详细信息放到另一张表里面
实现:
在任意一方加入外键,关联另一方的主键,并设置外键约束为unique
create table tb_user( id int auto_increment primary key comment '主键', name varchar(10) not null comment '姓名', age int not null comment '年龄', gender int not null comment '性别:1为男,2为女', phone_number varchar(20) not null comment '电话号码' ); create table tb_user_edu( id int auto_increment primary key comment '主键', degree varchar(10) not null comment '学历', major varchar(10) not null comment '专业', primary_school varchar(30) not null comment '小学', middle_school varchar(30) not null comment '高中', univetsity varchar(30) not null comment '大学', userid int not null comment '对应编号', constraint fk_userid foreign key (userid) references tb_user(id) )
多表查询一般指的是我们从多张表里面查询数据,它的风雷主要有以下几种:
-- 隐式内连接
select 字段列表 from 表1,表2 where ...
-- 显式内连接
select 字段列表 from 表1 inner join 表2 on 筛选条件
-- 左外连接
select 字段列表 from 表1 left outer join 表2 on 筛选条件...;
-- 右外连接
select 字段列表 from 表1 right outer join 表2 on 筛选条件
select 字段列表 from 表1 join 表1 on 筛选条件...
select 字段列表 from 表1 ...
union(all) -- 加all不去重
select 字段列表 from 表2 ...
注意:联合查询的多张表的列数必须保持一致,字段类型也需要保持一致
我们在sql语句中嵌套select语句,称为嵌套查询,又叫子查询
select * from t1 where column1=(select column1 from t2)
注意: 子查询外部的语句可以是insert/update/select的任意一个
示例:
查找销售部所有员工的信息(员工信息和部门信息不在一张表中)
select *
from employees
where dept_id=(select id from dept where name='销售部')
示例:
查询比销售部所有员工工资都高的员工信息
select *
from employees
where salary>all(select salary from employees where dept_id=select id from dept where name='销售部')
示例:
查找与a工资和直属领导相同的员工
select *
from employees
where (salary,manageid)=(select salary,manageid from employees where name='a')
基本与行子查询类似,这里不做赘述。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。