赞
踩
// (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;
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。