GIS的积累
It is never to late to learn

导航

 

如果在PL/SQL下执行select top 10 * from tbimgae_headinfo 会报错:ORA-00923:未找到要求的FROM关键字

替代方案:select *from (select * from tbimage_headinfo order by f_dataid) where rownum <= 10 order by rownum;

posted on 2011-04-04 22:39  GIS的学习  阅读(1355)  评论(0)    收藏  举报