SQL的补充知识点


mysql中与null相加的问题解决方案
SELECT eName,sal+IFNULL(comm,0) from emp

关于小数点的问题
salary DECIMAL(5,2)
5精度2小数

format函数
SELECT FORMAT(1234.9999999,2)


SELECT  FORMAT(avg(sal),0) from emp GROUP BY deptNo


查看两个日期之间的天数
查看天数
select TO_DAYS(SYSDATE())-TO_DAYS('2014-11-9')

select TO_DAYS(SYSDATE())-TO_DAYS(hireDate) from emp


或者
计算日期之差
select TIMESTAMPDIFF(day,'2012-08-24','2012-08-30');
语法:
TIMESTAMPDIFF(interval,datetime_expr1,datetime_expr2)。
参数
SECOND。秒
MINUTE。分钟
HOUR。小时
DAY。天
WEEK。星期
MONTH。月
QUARTER。季度
YEAR。年

  SELECT TIMESTAMPDIFF(year,hireDate,SYSDATE()) from emp WHERE empno=7369

在指定的日期加上某个日期
TIMESTAMPADD(interval,int_expr,datetime_expr)
select TIMESTAMPADD(MINUTE,8820,'2012-08-24 09:00:00');

  SELECT TIMESTAMPADD(year,2,SYSDATE())


select stu.classId,stu.stuName,sinfo.subName,stucore.score
from studentinfo stu,stuscore stucore,subinfo sinfo
where stu.stuId=stucore.stuId
and stucore.subId=sinfo.subId

等值查询 查询学生姓名+考试成绩+科目名称


select stu.stuId,stu.stuName,score.score from studentinfo stu INNER JOIN stuscore score
on stu.stuId=score.stuId
内联查询
多表联查
INNER JOIN---需要连接的表写在一起
on  连接所需要的条件(外键)
练习1:
select e.deptNo,e.eName,e.sal,d.dname,d.loc from emp e INNER JOIN dept d
on e.deptNo=d.deptNo


SELECT stu.stuId,stu.stuName,sub.subName,score.score from studentinfo stu INNER JOIN stuscore score INNER JOIN subinfo sub
on stu.stuId=score.stuId
and sub.subId=score.subId
注意点:

三表联查的条件
书写顺序


SELECT stu.stuId,stu.stuName,sub.subName,score.score from studentinfo stu INNER JOIN stuscore score INNER JOIN subinfo sub
on stu.stuId=score.stuId
and sub.subId=score.subId
where score.score>=60
ORDER BY score.score desc
注意给条件的顺序


left join ---作用,多表联查

select e.deptNo,e.eName,e.sal,d.dname,d.loc from emp e left JOIN dept d
on e.deptNo=d.deptNo

 

SELECT stu.stuId,stu.stuName,score.score from studentinfo stu left  JOIN stuscore score
on stu.stuId=score.stuId


right join ---作用,多表联查
SELECT stu.stuId,stu.stuName,score.score from studentinfo stu right  JOIN stuscore score
on stu.stuId=score.stuId

区别
left join---以左表为基础查询(权)
如果左表有数据,右表没有,那么将左表的数据显示,右表显示为null    右边有,左标没有? 不显示

right join ---以右边的表为基础去查询数据
如果右边有,左边没有,那么显示右边的数据,左边的现实为null    另外中情况不显示


inner join

左右两边分别去查询,如果有一边没有,那么全部不显示


情况一
双十一所有用户订货信息

用户表   订单表

left join


nodeJs
 网站

你可能感兴趣的:(SQL的补充知识应用)