海量資源,盡在掌握
查詢當(dāng)天數(shù)據(jù)量
select count(*) from 表名 b where b.reqdate = to_date(to_char(sysdate,'YYYY-MM-DD'),'YYYY-MM-DD')
查詢上一天數(shù)據(jù)量
select count(*) from 表名 b where b.reqdate = to_date(to_char(sysdate-1,'YYYY-MM-DD'),'YYYY-MM-DD')
本文摘自 :https://blog.51cto.com/g