一. ER模型
- 矩形: 代表实体
- 椭圆:代表实体的属性
- 菱形:relation 代表实体之间的关系
二. 存储过程(procedure)
1. 语法
语法:
create procedure 存储过程名(参数,…)
begin//代码
end//
注意:
因为在存储时需要写sql语句,所以sql语句结尾会需要加 ' ; ' , 如果在存储的过程中添加 " ; ", 会导致存储过程结束,导致存储过程中的语法有缺失,所以要解决 "结束符" 的问题,
1.1 修改当前窗口中的结束符
delimiter //
2.存储(procedure的使用)
2.1 简单的sql(只有一条sql语句的)
# create procedure 函数名称(in是写入 参数名称 参数的类型)
begin
create procedure pro1(in params int)
#注意 最终输出的只有一个sql
select * from stuinfo WHERE sid = params;
end //# 调用函数pro1(填的是参数)
call pro1(32)#简单的
create procedure pro_1()
select * from stuinfo;
//#如果存储过程中就一条SQL语句,begin…end两个关键字可以省略。#调用存储过程
call pro_1()//
2.2 多条sql
#包涵多条sql语句的
-- in代表输入参数,可以省略
-- return
-- procedure方便大型语句的查询;在创建成功以后,直接进行了语法的检查;
create procedure pro_2(in param int)
beginselect * from stuinfo where sid=param;select * from score where sid=param;
end//#调用
call pro_2(5)//
3. 参数的类别
- 在存储过程中,没有return,如果需要返回值,通过输出参数来实现
- 在MySQL中,参数分为3类,输入参数(in),输出参数(out),输入输出参数(inout),默认情况下是是输入参数(in)
- 存储过程中没有return,这里用out (输出参数),输出参数不用传递参数,输出参数要放在参数的最后
4. 局部变量
declare 是声明局部变量
create procedure pro2(in id int)
begin
# declare 在sql中代表创建局部变量declare `name` varchar(10) default "Tom";select * from stuinfo where `sid` = `id` or `sname` = `name`;
end # 这里defalut name 是 tom, 所以结果一定会有tom 这个数据,如果选中sid也是tom的话,结果就
#只有一条,否则结果是两条call pro2(31)
5. 全局变量
- 全局变量前面必须有一个@,全局变量的数据类型取决于变量的值。如果一个全局变量没有赋值,他的数据类型为null,且全局变量只能接受单个值
into与 全局变量
create procedure pro3(in limit_skip int,in limit_number int ,out result int)
begin# into是相当于赋值,不会打印结果,只是把结果放在变量中国,如果想要打印结果,就select 变量select sum(sid)+limit_skip+limit_number into result from `stuinfo`;
end/*首先 先解释(in limit_skip int,in limit_number int ,out result int)
有两个输入参数 分别是limit_skip和limit_number, 输出参数是result。
其次,sql语句的解释, 首先对sid求和,其结果是122,然后 加上 两个我们传进去的两个参数,
这三个数字的求和 通过 into 传给 输出函数 result
*/# 设置一个全局变量
# sum(sid)= 122
# set @res=null;-- 调用pro函数, 2是limit_skip,4是limit_number,@res是传出参数
call pro3(2,4,@res) ;# 打印 传出参数的结果,因为 sid求和 与 另外两个参数 的值传给了 res,打印res即可
select @res# 结果是122 + 2+ 4 =128
inout参数与全局变量
inout: 既可以传入也可以传出
create procedure pro4(inout result int)
begin# result 通过 inout参数 既可以传入 又可以传出 select sum(sid)+result into result from `stuinfo`;end# 将全局参数 res 设置默认值 10
set @res = 10;
# 因为函数pro4 只有一个 inout参数 result,传一个就行
call pro4(@res);
select @res
6.procedure的使用
在orderinfo表中,使用二八定律,也就是计算前20%的人群会消费80%的消费总额。
所以你需要计算有效消费(已支付)的。再按照 会员号进行group by,再依据消费金额大小,筛选出前20%的人,并求其消费总额,(金额从大到小,计算20%的人),再用相同方法计算出后80%的消费。
create procedure pro_ac()
begin# 定义一个局部表量 用于存储数据declare top20 int ;declare last80 int;# 这个是计算出已支付的 20%的人 与80%的人各有多少,#并且通过into传入的参数top20和last80中,不进行输出select round(count(DISTINCT uid)*0.2),round(count(DISTINCT uid)*0.8)into top20,last80from orderinfowhere `ispaid`="已支付";# 这里是计算 20%人 的消费总和 select sum(amt) into top20FROM(select uid,sum(amount) as amtfrom orderinfowhere `ispaid` = "已支付"GROUP BY uidorder by amt desclimit top20)as tmp;# 计算80%人的消费总和select sum(amt)into last80FROM(select uid,sum(amount) as amtfrom orderinfowhere `ispaid` = "已支付"GROUP BY uidorder by amt asclimit last80)as tmp1;# 这里才是输出select top20 ,last80 from dual;
ENDcall pro_ac();
7. 添加索引
索引:是一种记录会消耗存储空间
最左前缀法:建立的索引当中最左边的字段一定要出现在sql语句之中。也就是说(`uid`,`ispaid`,`amount`) 像这样的联合索引当你 只使用 uid时,也可以进行查询。不然
只能`uid`,`ispaid`,`amount`三者同时出现才能进行搜索。
添加索引语法: alter table `表名称` add index `索引名字`(字段)
alter table orderinfo add index `union1`(`uid`,`ispaid`,`amount`)alter table orderinfo add index `union2`(`ispaid`,`amount`,`uid`)alter table orderinfo add index `unioin3`(`amount`,`uid`,`ispaid`)select `amount` from table where `ispad` = "已支付" order by uid
查看是否使用索引:explain select
explain select * from orderinfo where ispaid="已支付"
三. sql 编程
1. case-when语句(可以写在sql语句中) (生成透视表)
create procedure pro_9(in num int)
begin#需要做判断的变量case numwhen 1 then select '杀马特' as '气质';when 2 then select '屌丝' as '气质';when 3 then select '正常人' as '气质';when 4 then select '贵族' as '气质';else select '输入不正确' as '气质';end case;
end //call pro_9(2)//
case when 条件1 then 结果
case when 条件2 then 结果
select year(Sage),case when ssex = "男" then count(*) end as 男,case when ssex = "女" then count(*) end as 女from studentgroup by ssex,year(Sage);
2. if-else 只能用在函数中,不可以直接使用在sql语句中
if 条件 then//代码1elseif 条件 then// 代码2else// 代码3end if;create procedure pro_8(in grade int)
beginif grade=1 thenselect '金牌会员' as '等级';elseif grade=2 thenselect '普通会员' as '等级';elseselect '游客' as '等级';end if;
end
#调用
call pro_8(3)
3. loop循环
#loop遇到leave退出
create procedure proc(in num int)
begindeclare total int default 0;declare i int default 0;sign:loop #循环标志set total=total+i;set i=i+1; if i>=num thenleave sign;# leave=breakend if;end loop;select total from dual;
end //call proc(100)//
#如果没有设置标签名,leave loop
#sign是循环名,用于结束循环,可以自己随意取名字
4. while循环
#语法:
while 条件 do//代码
end whilecreate procedure pro_11(in num int)
begindeclare total int default 0;declare i int default 0;while num>=i doset total=total+i;set i=i+1;end while;select total from dual;
end //call pro_11(100)//
5.repeat循环
#语法
repeat代码until 条件 -- 直重复到条件为true才结束
end repeatcreate procedure pro_12(in num int)
begindeclare total int default 0;declare i int default 0;repeatset total=total+i;set i=i+1;until i>numend repeat;select total from dual;
end //call pro_12(100)//
6. leave和iterate
leave类似于break,iterate类似于continuecreate procedure pro_13()
begindeclare i int default 0;sign:while i<5 doset i=i+1;if(i=3) then#leave sign; -- 类似于breakiterate sign; -- 类似于continueend if;select i from dual;end while;
end //call pro_13()//
四. 自定义函数
调用直接 select
#语法:
Create function 函数名(形参) returns 返回的数据类型
begin//函数体
end#第一步
delimiter //#不带参数的函数
create function myfun() returns varchar(32)
beginreturn 123;
end//#调用函数
select myfun()//#Linux中的mysql不支持函数
#先查看是否支持
show variables like 'log_bin_trust_function_creators';
#进入/etc/my.cnf
#放在[mysqld]
log_bin_trust_function_creators=1
#写好以后重启mysql服务器
service mysqld restart#带参数
create function myfun_1(num1 int,num2 int) returns int
begindeclare num int default 0;set num=num1+num2;return num;
end //select myfun_1(100,200)//#删除函数
drop function myfun_1//#自己封装 首字母大写
create function firstup(str varchar(1024)) returns varchar(1024)
beginreturn concat(ucase(substr(str,1,1)),substr(str,2));
end//
-- 封装一个首字母大写的自定义函数create function firstup(str varchar(32)) returns varchar(32)
begindeclare a varchar(1);declare b varchar(32);set a = upper(left(str,1));set b = lower(substr(str,2));return concat(a,b);
endselect firstup("word")