oracle select statement

admin

Administrator
Staff member
with MYSQL, you can write a statement as billow:

SELECT * FROM table_name
WHERE ......
ORDER BY ....
LIMIT 10,5;

but with ORACLE, how can I implement the function as above?
 
Back
Top