day41 mycql 函数
一些经典的练习题,以及函数的简单用法,內建函数
-- 函数
python函数
def fun1(a1,a2,a3):
sum = a1+a2+a3
return sum fun1(1,2,3) java中函数写法
public String fun2(int i1,String s2){ String sum = i1+s2; return sum;
}
A a = new A();
a.fun2(1,"assda"); javascript
function fun3(a1,a2){
var sum = a1+a2;
return sum;
} mysql 自定义函数
create FUNCTION fun1(i int,x int)
returns int -- 声明返回的类型
BEGIN
DECLARE sum int DEFAULT 0;
SET sum = i+x;
return(sum);-- 提供返回结果
end 调用函数
select 函数名称(参数值)
在select使用函数
select ren.*,fun1(ren.p_sal,100) from ren
博客表
id name time
1 ADAS 2017-09-09
2 sa第三 2017-10-09
3 sadd 2017-10-19
select DATE_FORMAT(now(),'%Y年%m月') select CHAR_LENGTH("中午");
select length("中午"); select CONCAT("alex","asdsad","在法国风格",null) select CURDATE();
select CURTIME();
select now(); SQL练习:
-- 1、查询课程编号“001”比课程编号“002” 成绩高的所有学生的学号; select s_score from score where c_id =''; select s_score from score where c_id =''; select A.s_id from (select s_score,s_id from score where c_id ='') as A,
(select s_score,s_id from score where c_id ='') B where A.s_id = B.s_id
and A.s_score > B.s_score; -- 2、查询平均成绩大于60分的同学的学号和平均成绩; select avg(s_score),s_id from score where s_id = 1 GROUP BY s_id having avg(s_score)>60 -- 3、查询所有同学的学号、姓名、选课数、总成绩; select student.s_id,student.s_name,count(1) as'选课数',sum(s_score) from score,student where score.s_id = student.s_id GROUP BY s_id
-- 4查询含有"子"的老师的个数; select count(t_id) from teacher where t_name like '%子%' -- 5、查询没学过“老子”老师课的同学的学号、姓名; select c.c_id from teacher t,course c where t.t_id = c.t_id and t.t_name ='老子'; select s_id from score s where s.c_id in
(select c.c_id from teacher t,course c where t.t_id = c.t_id and t.t_name ='老子'); select DISTINCT student.s_id,student.s_name from score,student where score.s_id not in (select s_id from score s where s.c_id in
(select c.c_id from teacher t,course c where t.t_id = c.t_id and t.t_name ='老子')
)
and student.s_id = score.s_id -- 6、查询学过“001”并且也学过编号“002”课程的同学的学号、姓名; select st.s_id,st.s_name from score s
inner join student st on s.s_id = st.s_id
where s.c_id = '' or s.c_id =''
GROUP BY s.s_id HAVING count(s.s_id) = 2; select st.s_id,st.s_name from (select * from score s where s.c_id = '' union all select * from score s where s.c_id = '' ) as lin
inner join student st on lin.s_id = st.s_id
GROUP BY lin.s_id HAVING count(lin.s_id) = 2 注意: union :表示去重复合并表
union ALL :表示不去重复合并表 -- 7、查询学过“老子”老师所教的所有课的同学的学号、姓名;
#1.先查询"老子"老师教哪些课程
#2.再查询哪些学生学习了这些课程
#3.再根据学生编号分组,如果分组后的个数 ="老子"老师所教授课程的个数,
# 则表示学过该老师所有课程. select c_id from course c ,teacher t where c.t_id = t.t_id and t.t_name='张雪峰'; select st.s_id,st.s_name from score,student st where score.s_id = st.s_id and c_id in(
select c_id from course c ,teacher t where c.t_id = t.t_id and t.t_name='张雪峰')
GROUP BY s_id having count(sc_id) =
(select count(1) from course c ,teacher t where c.t_id = t.t_id and t.t_name='张雪峰') -- 8、查询课程编号“2”的成绩比课程编号“1”课程低的所有同学的学号、姓名;
select a.s_id from
(select * from score where c_id ='') a,
(select * from score where c_id ='') b
where a.s_id = b.s_id and a.s_score < b.s_score; -- 9、查询有课程成绩小于60分的同学的学号、姓名; select DISTINCT st.s_id,st.s_name from student st,score sc where st.s_id = sc.s_id and sc.s_score < 60 -- 10、查询没有学全所有课的同学; select count(1) from course c select * from student st where s_id in (
select s_id from score sc GROUP BY sc.s_id HAVING count(1)
<> (select count(1) from course c)
) -- 11、查询至少有一门课与学号为“002”的同学所学相同的同学的学号和姓名; select sc.c_id from score sc,student st where sc.s_id =st.s_id and sc.s_id ='' select DISTINCT st.s_id,st.s_name from score sc,student st where
st.s_id =sc.s_id and sc.c_id in(select sc.c_id from score sc where sc.s_id ='') -- 12、查询学过 学号为“002”同学全部课程 的其他同学的学号和姓名; select sc.c_id from score sc where sc.s_id = '' select st.s_id,st.s_name from score sc,student st where sc.s_id =st.s_id and st.s_id !='' and sc.c_id in
(select sc.c_id from score sc where sc.s_id = '')
GROUP BY sc.s_id HAVING count(1) = (select count(1) from score sc where sc.s_id = '') -- 14、把“score”表中“老子”老师教的课的成绩都更改为此课程的平均成绩;
UPDATE score set s_score = (select * from (select avg(sc.s_score) from teacher t,course c,score sc where c.t_id = t.t_id
and sc.c_id = c.c_id and t.t_name='张雪峰' ) ss) where score.sc_id in( select * from
(select sc_id from teacher t,course c,score sc where c.t_id = t.t_id
and sc.c_id = c.c_id and t.t_name='张雪峰') aaa )
concat函数就类似于字符串里面的拼接功能,把一些字段进行修改,对应的字段里面的值也会有变化,
例如:select concat('字符串',字段名,' ','字符串','字段名')from 表格名=======>
select concat('书名:','name',' ','作者:','author')from bk_l; ====>这里加上空格或者是其他自定义符号皆可,主要起到一个分隔符的作用
还可以写成这样,每个字段跟每个字段都分别用括号括起来,更便于区分开彼此,
select concat('书名:','name'),concat('作者:','author')from bk_l; ======这样就更便于区分每个字段
这里是mycql里面的内建函数里面时间的一些符号的使用方法
https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html
函数的一些需要掌握的知识点(较常用的):
-- create function f(w int,x int )
-- returns int
-- begin
-- declare sum int default 0;
-- set sum=w+x;
-- return(sum);
-- end
--
-- select person.*,f(person.p_sal,200)from person -- select DATE_FORMAT(now(),'%Y%M%W')
-- select CHAR_LENGTH('午夜')
-- select LENGTH('午夜')
-- select CONCAT('alex','sowhat','午夜',NULL) 如果这里有null,就会直接显示空
-- select date_format ('2001-10-08 20:00:30','%W %M %Y');
-- select DATE_FORMAT('2007-10-08 20:00:00','%H:%i:%s') -- h=hour,i=minute,s=SECOND
-- select date_format('2007-10-08 20:00:00','%a %b %j')-- a是首字母大写的星期,b是首字母大写的月份 j是day of year,一年中的第几天
-- select DATE_FORMAT('1997-10-04 22:23:05','%H %k %I %r %T %S %w %s') -- H是小时,显示的小时;K也是小时,是一天中第几个小时(23小时制);I是一天中的第几个小时(12小时制);r是12小时制,显示当前时间的时分秒,有后缀AM或者PM;T是24小时制显示时分秒;S是秒,第几秒;
-- w是一个星期中的第几天,mon是第一天,Saturday是第六天
-- select date_format('1999-01-01','%X %V') -- 哪一年中的第几个礼拜 这一天是第1998年的第52个礼拜
-- select date_format('2006-06-10','%d') -- d是一个月中的第几天
时间和日期函数:
curdate() 或者current_date() 返回当前的日期
curtime() 或者current_time()返回当前的时间
date_add(date,interval in keyword) 返回日期date加上间隔时间int的结果,(int必须按照关键字进行格式化)如,selectdate_add(current_date,interval 6 month);
date_format(date,fmt)依照指定的fmt格式格式化日期date值
date_sub(date,interval in keyword)返回日期date加上间隔时间int的结果,(int必须按照关键字进行格式化)
dayofweek(date) 返回date所代表的一星期中第几天(1~7)
dayofmonth(date)返回date是一个月的第几天(1~31)
dayofyear(date) 返回date是一年中的第几天(1~366)
dayname(date) 返回date的星期名 如:select dayname(current_date);
form_unixtime(ts,fmt) 根据指定的fmt格式,格式化unix时间戳ts
hour(time) 返回time的小时值(0~23)
minute(time) 返回time的分钟值(0~59)
month(date) 返回date的月份值(1~12)
monthname(date) 返回date的月份名, 如:select monthname(current_date);
now() 返回当前的日期和时间
quarter(date) 返回date在一年中的季度(1~4), 如select quarter(current_date);
week(date) 返回日期date为一年中第几周(0~53)
year(date) 返回日期date的年份(1000~9999)
date_format(date,fmt) 依照字符串fmt格式化日期date值
format(x,y) 把x格式化以逗号隔开的数字序列化,y是结果的小数位数
inet_aton(ip) 返回IP地址的数字表示
inet_ntoa(num) 返回数字所代表的ip地址
time_format(time,fmt) 依照字符串fmt格式化时间time值
其中最简单的是format()函数,他可以把大的数值格式化为以逗号间隔易读的序列
select format(2332.3332222,4);
select date_format(now(),'%w, %d %M %Y %r');
select date_format(now(),'%Y-%m-%d');
select date_format(18890923,'%Y-%m-%d');
select date_format(now(), '%h:%i %p');
select inet_aton('10.211.36.75.);
select inet_ntoa(139867898);
day41 mycql 函数的更多相关文章
- day40 mycql 视图,触发器,存储过程,函数
视图,触发器,存储过程,自定义函数 -- 回顾 1.mysql 约束 1.非空 not null 2. 主键约束 primary key 3. 唯一约束 unique 4. 外键约束 foreign ...
- day38 mycql 初识概念,库(增删改查),表(增删改)以及表字段(增删改查),插入更新操作
在Navicat中把已经生成的表逆向成模型 数据库上,右键-逆向数据库到模型 ego笔记: 增删改查 文件夹(库) 增 create database day43 charset utf8; 改 al ...
- MySQL 之视图、 触发器、事务、存储过程、内置函数、流程控制、索引
本文内容: 视图 触发器 事务 存储过程 内置函数 流程控制 索引 ------------------------------------------------------------------ ...
- Python 小而美的函数
python提供了一些有趣且实用的函数,如any all zip,这些函数能够大幅简化我们得代码,可以更优雅的处理可迭代的对象,同时使用的时候也得注意一些情况 any any(iterable) ...
- 探究javascript对象和数组的异同,及函数变量缓存技巧
javascript中最经典也最受非议的一句话就是:javascript中一切皆是对象.这篇重点要提到的,就是任何jser都不陌生的Object和Array. 有段时间曾经很诧异,到底两种数据类型用来 ...
- JavaScript权威指南 - 函数
函数本身就是一段JavaScript代码,定义一次但可能被调用任意次.如果函数挂载在一个对象上,作为对象的一个属性,通常这种函数被称作对象的方法.用于初始化一个新创建的对象的函数被称作构造函数. 相对 ...
- C++对C的函数拓展
一,内联函数 1.内联函数的概念 C++中的const常量可以用来代替宏常数的定义,例如:用const int a = 10来替换# define a 10.那么C++中是否有什么解决方案来替代宏代码 ...
- 菜鸟Python学习笔记第一天:关于一些函数库的使用
2017年1月3日 星期二 大一学习一门新的计算机语言真的很难,有时候连函数拼写出错查错都能查半天,没办法,谁让我英语太渣. 关于计算机语言的学习我想还是从C语言学习开始为好,Python有很多语言的 ...
- javascript中的this与函数讲解
前言 javascript中没有块级作用域(es6以前),javascript中作用域分为函数作用域和全局作用域.并且,大家可以认为全局作用域其实就是Window函数的函数作用域,我们编写的js代码, ...
随机推荐
- 基于官方mysql镜像构建自己的mysql镜像
参考文章:https://www.jb51.net/article/115422.htm搭建步骤 1.首先创建Dckerfile: 1 2 3 4 5 6 7 8 9 10 11 12 FROM my ...
- Go语言从入门到放弃(二) 优势/关键字
本来这里是写数据类型的,但是规划了一下还是要一步步来,那么本篇就先介绍一下Go语言的 优势/关键字 吧 本章转载 <The Way to Go>一书 Go语言起源和发展 Go 语 言 起 ...
- js混淆、eval解密
js中的eval()方法就是一个js语言的执行器,它能把其中的参数按照JavaScript语法进行解析并执行,简单来说就是把原本的js代码变成了eval的参数,变成参数后代码就成了字符串,其中的一些字 ...
- rsyslog的安装、使用、详解
操作系统:CentOS release 6.7 download yum repo file:rsyslogall.repo [rsyslog-v8-stable] name=Adiscon Rsys ...
- Android 设备的CPU类型(通常称为”ABIs”)
armeabiv-v7a: 第7代及以上的 ARM 处理器.2011年15月以后的生产的大部分Android设备都使用它. arm64-v8a: 第8代.64位ARM处理器,很少设备,三星 Galax ...
- linux命令tar压缩解压
tar -c: 建立压缩档案-x:解压-t:查看内容-r:向压缩归档文件末尾追加文件-u:更新原压缩包中的文件 这五个是独立的命令,压缩解压都要用到其中一个,可以和别的命令连用但只能用其中一个.下面的 ...
- css之relative
一.relative对absolute的限制作用 1.限制left/top/right/bottom定位.absolute默认是在也没的左上角,当父类设定为relative,absolute就被限制在 ...
- restricted 模式及其 使用
什么是数据库的RESTRICTED 模式 注:以下内容来至:百度知道 --数据库受限模式,在这个模式下只有RESTRICTED SESSION 权限的人才可以登陆,一般用与数据库维护的时候使用. RE ...
- Ubuntu下Mongodb和Robo3T的安装与使用
Mongodb的安装:https://blog.csdn.net/Canhui_WANG/article/details/78995388 Robo3T的安装:https://www.jianshu. ...
- mysql服务器没有响应
第一步删除c:\windowns下面的my.ini(可以先改成其它的名字也行) 第二步打开对应安装目录下\mysql\bin\winmysqladmin.exe 输入用户名 和密码(也可以忽略此步) ...