1、创建测试表,create table test_date2(id number, v_date date)
2、插入测试数据,
insert into test_date2
select level, sysdate - level * 2 from dual connect by level <100
3、查看表中所有记录,select t.* , rowid from test_date2 t
4、编写sql代码,取近三个月数据,用add_months函数
select t.*, rowid from test_date2 t where v_date >add_months(sysdate, -3)
5、编写sql代码,取近10天数据,用sysdate-10函数,
select t.*, rowid from test_date2 t
where v_date >sysdate-10 order by v_date
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)