这个就可以查出你web_date中指定某年某月第一天、最后一天的数据了:
但如果你的字段year_month是date类型的,就这样写:
select * from web_date a where a.year_month in
(select to_date('201502'||'01','yyyymmdd') from dual
union all(select to_date(to_char(last_day(to_date('201502', 'yyyymm')),'yyyymmdd'),'yyyymmdd')from dual));
但如果你的字段year_month是char类型的,就这样写:
select * from web_date a where a.year_month in
( select '201502'||'01' from dual
union all( select to_char(last_day(to_date('201502', 'yyyymm')),'yyyymmdd')from dual));
'201502'这个是变量,你可以任意更改。