美文网首页
SQL知识点

SQL知识点

作者: 林深雾雨 | 来源:发表于2019-11-25 15:39 被阅读0次

--聚合函数:intersect union exceot
--聚集函数:max min sum count avg
--集合 交集 intersect intersect all

create table emp(empno int);
insert into emp values(7369);
insert into emp values(7499);
insert into emp values(7859);--聚合函数:intersect  union exceot
--聚集函数:max min sum count avg
--集合  交集  intersect   intersect all
insert into emp values(7369);
select * from emp;

---------------------------------集合----------------------------------------------

--聚合函数:intersect  union exceot
--聚集函数:max min sum count avg
--集合  交集  intersect   intersect all
select * from emp a where a.empno in(7369,07499) intersect select * from emp b where b.empno in (7369);  --  从交集结果中去掉重复的

select * from emp a where a.empno in(7369,7499) intersect all select * from emp b where b.empno in (7369); --从交集结果中不去掉重复的

--集合  并集  union  union all
select * from emp a where a.empno in(7369,7499) union select * from emp b where b.empno in (7369); --从并集结果中去掉重复的

select * from emp a where a.empno in(7369,7499) union all select * from emp b where b.empno in (7369); --从并集结果中不去掉重复的


--集合 差集  except    except all
select * from emp a where a.empno in(7369,7499) except select * from emp b where b.empno in (7369); --从差集结果中去掉重复的

select * from emp a where a.empno in(7369,7499) except all select * from emp b where b.empno in (7369); --从差集结果中不去掉重复的

--连接 横向扩展
--组合(集合)纵向扩展


---------------子查询:(用的比较少) 相关子查询  非相关子查询-------------------

/*非相关子查询   先进行子查询 在进行外部查询
相关子查询  外部查询执行一次  子查询就执行一次
*/

--in  exists  按照最优化匹配原则 拿最小记录匹配大记录   
/*
用in 会优先子查询然后匹配外层查询   
用exists 会优先外层查询然后匹配子查询 
*/

/*
函数
*/

select current_date + interval '1 month'; --当前日期加一个月

select current_date + interval '1 week'; --当前日期加一周

select current_date + interval '1 day'; --当前日期加一天
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
select current_time + time '01:00';     --当前日期加一小时

select current_time + time '00:01';     --当前日期加一分钟

select current_time + time '00:00:01';  --当前日期加一秒

select now();

select current_database()   /*当前数据库的名字*/
select current_schema()   /*当前模式的名字*/
select current_user     /*当前执行环境下的用户名*/
select Version()

数据类型转换
select to_char(125,'999')
select to_char(125,'99999D99')
select to_char(125.8::real,'999D9')
select to_char(-125.8,'S999D99')
select to_char(current_timestamp,'HH12:MI:SS')
select to_char(interval '15h 2m 12s','HH24:MI:SS')
select to_date('05 Dec 2000','DD Mon YYYY')
select to_number('12,454.8-','99G999D9S')
select to_timestamp('05 Dec 2000','DD Mon YYYY')

相关文章

  • PL/SQL基础知识详解

    PL/SQL 这是对Oracle-SQL知识点详细介绍的文章系列,其他文章如下: Oracle-SQL系列知识点(...

  • BUUCTF-Web-随便注(三种解题思路)

    知识点:SQL注入-堆叠注入,sql预处理语句,巧用contact()函数绕过 堆叠注入原理: 在SQL中,分号(...

  • Oracle-SQL系列知识点(一)

    Oracle-SQL 这是对Oracle-SQL知识点详细介绍的文章系列,其他文章如下: Oracle-SQL系列...

  • Oracle-SQL系列知识点(三)

    Oracle-SQL 这是对Oracle-SQL知识点详细介绍的文章系列,其他文章如下: Oracle-SQL系列...

  • Oracle-SQL系列知识点(二)

    Oracle-SQL 这是对Oracle-SQL知识点详细介绍的文章系列,其他文章如下: Oracle-SQL系列...

  • <--个人成长笔记系列-->零碎点...

    JAVA知识点: (掌握)SQL_CACHE 关键字,表示在MySQL中使用缓存查询;SQL_NO_CACHE...

  • SQL注入学习笔记

    SQL注入是在学习网络安全时最先学到的一个漏洞知识点,难度不大,记录一些知识点,以后可以快速回顾。 首先,SQL是...

  • Web安全之SQL注入漏洞[1]

    Web安全之SQL注入漏洞 本节知识点 SQL注入原理 前言 结构化查询语句(Structured Query L...

  • MySQL数据分析常用函数方法

    SQL 数据分析知识点 1 sql 语句的执行顺序 执行顺序: from xxx join xxx:获取数据源 w...

  • SQL知识点

    1.GROUP BY 语句 GROUP BY语句用于结合合计函数,根据一个或多个列对结果集进行分组。 SQL GR...

网友评论

      本文标题:SQL知识点

      本文链接:https://www.haomeiwen.com/subject/nqrfwctx.html