all,any,some

select top 1000 
        * 
from    费用表 
where   费用ID<any ( select top 10 
                            ( 费用id ) 
                   from     费用表 
                   order by 费用ID asc  
)  
  
  
  
select top 1000 
        * 
from    费用表 
where   费用ID>all ( select top 10 
                            ( 费用id ) 
                   from     费用表 
                   order by 费用ID asc  
)  
  
  
  
  
  
select top 1000 
        * 
from    费用表 
where   费用ID<some ( select top 10 
                            ( 费用id ) 
                    from    费用表 
                    order by 费用ID asc )  
  
posted @ 2010-11-10 22:24  qanholas  阅读(171)  评论(0编辑  收藏  举报