oracle 多表查询分页 between

select  * from
        (
          select rownum rid,iid,fileMetaId,rowCount,objType,objId,info,exception,istate,logDateTime,sysName,origName,UploadUserName from
                 (select i.*,i.id iid,i.state istate,f.* from t_interactionlog i,t_filemeta f  where i.filemetaid=f.id  order by i.id asc
                 )
         )
         where   rid   between  200  and   500;

你可能感兴趣的:(oracle,between,多表,休闲,and)