select rownum,t1.* from
(
--msg_view是一个视图
select * from msg_view where msgtype='1'
--下面这三个条件随便去一个,使用rownum都可以查询到数据的,但是三个条件都在的话,使用rownum就查不到数据了,不适用rownum的话是有数据的
and userid in (select * from table(fun_getchildusers(100)))
and (mtstatus!=4 or mtstatus is null)
and (addtime between to_date('2013-12-16 0:00:00','yyyy-MM-dd HH24:mi:ss') and to_date('2014-1-16 11:21:29','yyyy-MM-dd HH24:mi:ss'))