query to fetch first 10 records in sql code example
Example 1: SQL SELECT TOP Equivalent in oracal
syntax -> SELECT column_name(s)
FROM table_name
WHERE ROWNUM <= number
////example///
SELECT *
FROM Persons
WHERE ROWNUM <=5
Example 2: How to display top 50 rows?
In MySQL, top 50 rows are displayed by using this following query:
SELECT * FROM
LIMIT 0, 50;