现有50000条数据,有id,code,time,value字段,求指定5000条数据的value,求代码? (id另存一张表内)
收起
select * from t1 inner join t2 on t1.id=t2.id where rownum = 5000
报告相同问题?