当前位置:网站首页>with recursive用法
with recursive用法
2022-08-04 05:28:00 【顺毛黑起】
with recursive 则是一个递归的查询子句,他会把查询出来的结果再次代入到查询子句中继续查询。
with recursive d(n, fact) as (
values (1,2)
union all #合并
select n+1, (n+1)*fact from d where n < 5)
SELECT * from d;
递归过程如下:
n=1 fact=2
n=1,n<5: n=1+1=2,fact=(1+1)*2=4
n=2,n<5:n=2+1=3,fact=(2+1)*4=12
n=3,n<5:n=3+1=4,fact=(3+1)*12=48
n=4,n<5:n=4+1=5,fact=(4+1)*48=240
n=5 n>=5==stop
with recursive d(n, fact) as (
values (1,2)
union all
select n+2, (n+1)*fact from d where n < 5)
SELECT * from d;
递归过程如下:
n=1 fact=2
n=1,n<5: n=1+2=3,fact=(1+1)*2=4
n=3,n<5:n=3+2=5,fact=(3+1)*4=16
n=5 n>=5==stop
with recursive d(n, fact) as (
values (1,2)
union all
select n+2, (n+1)*fact from d where n < 5)
select sum(fact) from d;
sum(fact)=2+4+16=22
with recursive d(n, fact) as (
values (1,2)
union all
select n+2, (n+1)*fact from d where n < 5)
select sum(n) from d;
sum(n)=1+3+5=9
select * from company;
with recursive t(n) as (
values (10)
union all
select salary from company where salary < 20000
)
select * from t;
with recursive t(n) as (
values (10)
union all
select salary from company where salary < 20000
)
select sum(n) from t;
边栏推荐
猜你喜欢
随机推荐
计算属性的作用及使用?
完美解决keyby造成的数据倾斜导致吞吐量降低的问题
解决JDBC在web工程中无法获取配置文件
NFT市场以及如何打造一个NFT市场
Kubernetes基础入门(完整版)
编程Go:内置打印函数 print、println 和 fmt 包中 fmt.Print、fmt.Println 的区别
webrtc中的引用计框架
flink-sql大量使用案例
什么是跨域和同源
【树 图 科 技 头 条】2022年6月27日 星期一 今年ETH2.0无望
scrapy 爬取当当图书名字图片
Swoole学习(一)
SQL练习 2022/7/4
记录获取参赛选手信息过程
剑指 Offer 2022/7/1
判断字符串是否有子字符串重复出现
IP地址查询
flink onTimer定时器实现定时需求
智能合约安全——delegatecall (2)
PHP实现异步执行程序