日期:2014-05-17  浏览次数:20719 次

提个小问题
tablename表中的数据如下
id     deli_date                 smem_id       sname       bmem_id     bname     subdate
22     '2006年上半年 '       1101             北京         3201           南京       2007-04-18

select   *
    from   tablename  
    where     subdate   <   to_date( '2007-04-01 ', 'yyyy-MM-dd ');

找不到数据,为何?
解决立马给分!急啊!

------解决方案--------------------
select *
from tablename
where subdate > to_date( '2007-04-01 ', 'yyyy-MM-dd ');