Difference between revisions of "Plsql first records"
From John Freier
(Created page with "To fetch the first 10 records from a result. SELECT * FROM table_a FETCH FIRST 1 ROW ONLY;") |
(No difference)
|
Latest revision as of 10:28, 3 October 2023
To fetch the first 10 records from a result.
SELECT * FROM table_a FETCH FIRST 1 ROW ONLY;