ORCALE 中随机取10条数据怎么取呀?
select top 10 * from tab_name order by tab_ID;怎么取不到啊!ORCALE中不支持这样取数据吗?
在ORACLE中没有"top 10"这个关键字的。那么要取10条数据可用"ROWNUM"
如取前10条:
select * from tab_name WHERE ROWNUM < 11 order by tab_ID
到编程先锋论坛上去看看吧
http://www.bcxf.cn