Currently there are only three databases known to implement this function!
mysql:select * from table limit 10
ORACLE:select * from table where rowid<10
msSQL:select top 10 from table
http://www.bkjia.com/PHPjc/631207.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/631207.htmlTechArticleCurrently, only three databases are known to implement this function! mysql:select * from table limit 10 ORACLE:select * from table where rowid10 msSQL:select top 10 from table...