元宵快乐:看SQL大师们用SQL绘制的团圆

题记在多年以前,论坛活跃的时代,在ITPUB上你能看到各种新奇有趣的知识,及时新鲜的信息,出类拔萃的技巧,有很多让人多年以后还记忆犹新。


这个帖子让我忍不住在这个日子,再次发送出来,让大家一起再次体会SQL的强大和神奇能力。而写好SQL,仍然是我们持续不断的追求。


话团圆,画团圆,元宵佳节倍思亲,可是大家知道吗,万能的SQL可以帮助大家绘制团圆。


在ITPUB论坛里,一群SQL爱好者们会用SQL来描摹一切可能。请看如下这段SQL,为大家绘制了团团圆圆的五连环:

with a as (select distinct round(a.x + b.x) x,round(a.y + b.y) y from

(select (sum(x) over(order by n)) x,

                            round(sum(y) over(order by n)) y

              from (select n, cos(n/30 * 3.1415926)*2  x,

                           sin(n/30 * 3.1415926) y

                           from (select rownum - 1 n from all_objects where rownum <= 30 +30))) a,

            (select n, (sum(x) over(order by n)) x,

                            round(sum(y) over(order by n)) y

              from (select n,

                           cos( m /3 * 3.1415926) * 2 * 15 x,

                           sin( m /3 * 3.1415926)* 15 y

                      from (select case when rownum <= 2 then 3 

                      when rownum = 3 then -2 else -6 end m, rownum - 1 n

                              from all_objects where rownum <= 5))) b

          )

select replace(sys_connect_by_path(point, '/'), '/', null) star

  from (select b.y, b.x, decode(a.x, null, ' ', '*') point

          from a,

               (select *

                  from (select rownum - 1 + (select min(x) from a) x

                          from all_objects

                         where rownum <= (select max(x) - min(x) + 1 from a)),

                       (select rownum - 1 + (select min(y) from a) y

                          from all_objects

                         where rownum <= (select max(y) - min(y) + 1 from a))) b

         where a.x(+) = b.x

           and a.y(+) = b.y)

where x = (select max(x) from a)

start with x = (select min(x) from a)

connect by y = prior y

       and x = prior x + 1;

这段SQL在Oracle中输出了下图,请用SQL执行:


好吧,这是五个连环,事实上是奥运会的五环旗,在庆祝奥运期间,网友 nyfor 的随手创作。


再看如下一段SQL,则是输出了一个五角星:

with a as (

            select distinct round(sum(x) over(order by n)) x,

                            round(sum(y) over(order by n)) y

              from (select n,

                           cos(trunc(n / 20) * (1-1/5) * 3.1415926) * 2 x,

                           sin(trunc(n / 20) * (1-1/5) * 3.1415926) y

                      from (select rownum - 1 n from all_objects where rownum <= 20 * 5))

          )

select replace(sys_connect_by_path(point, '/'), '/', null) star

  from (select b.y, b.x, decode(a.x, null, ' ', '*') point

          from a,

               (select *

                  from (select rownum - 1 + (select min(x) from a) x

                          from all_objects

                         where rownum <= (select max(x) - min(x) + 1 from a)),

                       (select rownum - 1 + (select min(y) from a) y

                          from all_objects

                         where rownum <= (select max(y) - min(y) + 1 from a))) b

         where a.x(+) = b.x

           and a.y(+) = b.y)

where x = (select max(x) from a)

start with x = (select min(x) from a)

connect by y = prior y

       and x = prior x + 1;


这个SQL的解释如下

其中数字20表示五角星每一条边上的点的个数(你也可以设置的大一些或小一些), 其中的数字5表示五角星的边数, 其中的数字2是为了调整横向字符间距与纵向行距之间的差异而设置的, 你也可以不乘以这个2, 这里只是为了输出稍微好看一些.

调整期中数字5, 你还可以输出7角星, 9角星.... 注意我的SQL不能输出6角星,8角星,因为我的SQL算法中是以一笔画能够画成的星为基础设计的算法的.


比如,以下是7角形输出:



在一轮讨论之后,newkid 大神给出了一个系列的SQL改写,小编就列举如下。

SQL一:

with a as ( select distinct round(sum(x) over(order by n)) x,

                            round(sum(y) over(order by n)) y

              from (select n,

                           cos(trunc(n / 20) * (1-1/5) * 3.1415926) * 2 x,

                           sin(trunc(n / 20) * (1-1/5) * 3.1415926) y

                      from (select rownum - 1 n from DUAL CONNECT BY rownum <= 20 * 5))

          )

SELECT LPAD(REPLACE(SUM(POWER(10,x-1)),'0',' '),(SELECT MAX(x) FROM a)) AS star

  FROM a

GROUP BY y

ORDER BY y;

SQL二:

with a as ( select distinct round(sum(x) over(order by n)) x,

                            round(sum(y) over(order by n)) y

              from (select n,

                           cos(trunc(n / 20) * (1-1/5) * 3.1415926) x,

                           sin(trunc(n / 20) * (1-1/5) * 3.1415926) y

                      from (select rownum - 1 n from DUAL CONNECT BY rownum <= 20 * 5))

          )

SELECT LPAD(REPLACE(SUM(POWER(10,x)),'0',' '),(SELECT MAX(x)+1 FROM a)) AS star

  FROM a

GROUP BY y

ORDER BY y;

SQL三:

with a as ( select distinct round(sum(x) over(order by n)) x,

                            round(sum(y) over(order by n)) y

              from (select n,

                           cos(trunc(n / 20) * (1-1/5) * 3.1415926) * 2 x,

                           sin(trunc(n / 20) * (1-1/5) * 3.1415926) y

                      from (select rownum - 1 n from DUAL CONNECT BY rownum <= 20 * 5))

          )

SELECT TRANSLATE(LPAD(NVL(SUM(POWER(10,CASE WHEN x>=40 THEN x-40 END)),0),(SELECT MAX(x)-39 FROM a WHERE x>=40))

                 ||LPAD(SUM(POWER(10,CASE WHEN x<40 THEN x END)),40) 

                ,'01',' *'

                )

        AS star

  FROM a

GROUP BY y

ORDER BY y;

SQL四:

with a as (SELECT x,y

                 ,ROW_NUMBER() OVER(PARTITION BY y ORDER BY x) rn

                 ,MAX(x) OVER(PARTITION BY y) maxx

             FROM (select distinct round(sum(x) over(order by n)) x,

                                  round(sum(y) over(order by n)) y

                    from (select n,

                                 cos(trunc(n / 20) * (1-1/5) * 3.1415926) * 2 x,

                                 sin(trunc(n / 20) * (1-1/5) * 3.1415926) y

                            from (select rownum - 1 n from DUAL CONNECT BY rownum <= 20 * 5)

                          )

                   )

          )

,t(rn,x,y,str,maxx) AS (

SELECT 1,x,y,LPAD('*',x+1),maxx FROM a WHERE rn=1

UNION ALL

SELECT a.rn,a.x,t.y,str||RPAD(' ',a.x-t.x-1)||'*',t.maxx

  FROM t,a 

WHERE t.rn=a.rn-1 AND t.y=a.y

) CYCLE x,y SET cycle_flag TO 'Y' DEFAULT 'N'

SELECT str FROM t WHERE x=maxx ORDER BY y;

SQL五:

VAR SCALE NUMBER;

EXEC :SCALE :=3;


with a as (SELECT x,y

                 ,ROW_NUMBER() OVER(PARTITION BY y ORDER BY x) rn

                 ,MAX(x) OVER(PARTITION BY y) maxx

             FROM (select distinct round(sum(x) over(order by n)) x,

                                  round(sum(y) over(order by n)) y

                    from (select n,

                                 cos(trunc(n / (10*:SCALE)) * (1-1/5) * 3.1415926) * 2 x,

                                 sin(trunc(n / (10*:SCALE)) * (1-1/5) * 3.1415926) y

                            from (select rownum - 1 n from DUAL CONNECT BY rownum <= 10*:SCALE * 5)

                          )

                   )

          )

,t(rn,x,y,str,maxx) AS (

SELECT 1,x,y,LPAD('*',x+1),maxx FROM a WHERE rn=1

UNION ALL

SELECT a.rn,a.x,t.y,str||RPAD(' ',a.x-t.x-1)||'*',t.maxx

  FROM t,a 

WHERE t.rn=a.rn-1 AND t.y=a.y

) CYCLE x,y SET cycle_flag TO 'Y' DEFAULT 'N'

SELECT str FROM t WHERE x=maxx ORDER BY y;


SQL六 - 利用wmsys.wm_concat的写法其实更简单

with a as (SELECT x,y

                 ,LAG(x,1,0) OVER(PARTITION BY y ORDER BY x) last_x

             FROM (select distinct round(sum(x) over(order by n)) x,

                                  round(sum(y) over(order by n)) y

                    from (select n,

                                 cos(trunc(n / (10*:SCALE)) * (1-1/5) * 3.1415926) * 2 x,

                                 sin(trunc(n / (10*:SCALE)) * (1-1/5) * 3.1415926) y

                            from (select rownum - 1 n from DUAL CONNECT BY rownum <= 10*:SCALE * 5)

                          )

                   )

          )

SELECT REPLACE(MAX(str),',') STR

  FROM (SELECT y,wmsys.wm_concat(LPAD('*',x-last_x)) OVER(PARTITION BY y ORDER BY x) str

          FROM a

        )

GROUP BY y

ORDER BY y;


SQL之七 - wmsys.wm_concat的connect by替代写法:

with a as (SELECT x,y

                 ,LAG(x,1,0) OVER(PARTITION BY y ORDER BY x) last_x

                 ,ROW_NUMBER() OVER(PARTITION BY y ORDER BY x) rn

             FROM (select distinct round(sum(x) over(order by n)) x,

                                  round(sum(y) over(order by n)) y

                    from (select n,

                                 cos(trunc(n / (10*:SCALE)) * (1-1/5) * 3.1415926) * 2 x,

                                 sin(trunc(n / (10*:SCALE)) * (1-1/5) * 3.1415926) y

                            from (select rownum - 1 n from DUAL CONNECT BY rownum <= 10*:SCALE * 5)

                          )

                   )

          )

SELECT REPLACE(MAX(str),',') STR

  FROM (SELECT y,SYS_CONNECT_BY_PATH(LPAD('*',x-last_x),',') str

          FROM a

         START WITH rn=1

        CONNECT BY y=PRIOR y AND rn=PRIOR rn+1

        )

GROUP BY y

ORDER BY y;


SQL如神,学习入化,动手为王,祝愿大家元宵节快乐!


还有一些神奇的文章:

无往不利:用SQL解海盗分金的利益最大化问题


资源下载

关注公众号:数据和云(OraNews)回复关键字获取

2017DTC,2017 DTC 大会 PPT

DBALIFE,“DBA 的一天”海报

DBA04,DBA 手记4 经典篇章电子书

RACV1, RAC 系列课程视频及 PPT

122ARCH,Oracle 12.2 体系结构图

2017OOW,Oracle OpenWorld 资料

PRELECTION,大讲堂讲师课程资料

云和恩墨

数据驱动,成就未来。整合业界顶尖的技术与合作伙伴资源,围绕数据及相关领域,提供解决方案和专业服务。
业务架构
电子渠道(网络销售)分析系统、数据治理
IT基础架构
分布式存储解决方案 | zData一体机 | 容灾环境建设
数据架构
Oracle DB2 MySQL NoSQL
专项服务:架构/安全/容灾/优化/整合/升级/迁移
运维服务:运维服务  代维服务
人才培养:个人认证  企业内训
软件产品:SQL审核、监控、数据恢复
应用架构
应用软件和中间件:数据建模 | SQL审核和优化 | 中间件服务


  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
编译原理是计算机专业的一门核心课程,旨在介绍编译程序构造的一般原理和基本方法。编译原理不仅是计算机科学理论的重要组成部分,也是实现高效、可靠的计算机程序设计的关键。本文将对编译原理的基本概念、发展历程、主要内容和实际应用进行详细介绍编译原理是计算机专业的一门核心课程,旨在介绍编译程序构造的一般原理和基本方法。编译原理不仅是计算机科学理论的重要组成部分,也是实现高效、可靠的计算机程序设计的关键。本文将对编译原理的基本概念、发展历程、主要内容和实际应用进行详细介绍编译原理是计算机专业的一门核心课程,旨在介绍编译程序构造的一般原理和基本方法。编译原理不仅是计算机科学理论的重要组成部分,也是实现高效、可靠的计算机程序设计的关键。本文将对编译原理的基本概念、发展历程、主要内容和实际应用进行详细介绍编译原理是计算机专业的一门核心课程,旨在介绍编译程序构造的一般原理和基本方法。编译原理不仅是计算机科学理论的重要组成部分,也是实现高效、可靠的计算机程序设计的关键。本文将对编译原理的基本概念、发展历程、主要内容和实际应用进行详细介绍编译原理是计算机专业的一门核心课程,旨在介绍编译程序构造的一般原理和基本

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值