当前位置:   article > 正文

SQL的with as 作为中间表使用_sql 中间表

sql 中间表
// (1) 创建表
CREATE TABLE table_date (DATE1 DATETIME);
// (2) 插入数据
INSERT INTO table_date VALUES('2023-04-15');
INSERT INTO table_date VALUES('2023-04-16');
INSERT INTO table_date VALUES('2023-04-17');
INSERT INTO table_date VALUES('2023-04-18');

//(3) with as  使用, tmp 相当于临时中间表可以起到缓存的作用,在后面的sql中可以多次使用.

with tmp  as(
    select *  from  table_date  where  DATE1  between  '2023-04-15' and  '2023-04-17'
)
select  *  from  tmp;

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/635336
推荐阅读
相关标签
  

闽ICP备14008679号