摘要: 如题,这类问题就是看思路,很多面试的时候都会遇到,思路到了,面试官也就默许了。也许不是很复杂,但确实实在。 1 With t1 as( 2 select 200 n union all 3 select n - 25 from t1 where n-25>=0 -- 1 CENT 4 ), 5 t2 as( 6 select 200 n union all 7 select... 阅读全文
posted @ 2016-03-29 18:12 港城大白鲨 阅读(269) 评论(1) 推荐(0)
摘要: 看到别人写的,自己就分享了一下。结合了自己的看法,讨论一下这个小话题....主要是with关键字 With t1 as( select 200 n union all select n - 25 from t1 where n-25>=0 -- 1 CENT ), t2 as( select 200 阅读全文
posted @ 2016-03-29 18:05 港城大白鲨 阅读(106) 评论(0) 推荐(0)