Difference between revisions of "Plsql first records"

From John Freier
Jump to: navigation, search
(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 11:28, 3 October 2023

To fetch the first 10 records from a result.

 SELECT *
 FROM table_a
 FETCH FIRST 1 ROW ONLY;