Say we want to select 10 records for a perticular query, we can use the following syntax
// mysql
select column from table limit 10;
// Oracle
select column from table where rownum <= 10;
If we want to select number of records from the results set in Oracle,
// Oracle
No comments:
Post a Comment