Solutions to technical problems that I come across. Keywords: The Web, Ubuntu, Windows, JavaScript, jQuery, AngularJS, PHP, Java, C++, mySQL, noSQL, and more.
Friday, August 3, 2012
MySQL VS Oracle SQL
Listed below are ways to achieve the same in Oracle SQL as in MySQL:
The equivalent of LIMIT in MySQL is ROWNUM in Oracle SQL: MySQL: SELECT * FROM table LIMIT 10; Oracle SQL: SELECT * FROM table WHERE ROWNUM <= 10
No comments:
Post a Comment