Answers for "sql get first 5 rows"

SQL
1

sql only five first row

SELECT your_column
FROM your_table
WHERE your_condition
LIMIT 5; -- your limit of rows you want to show here
Posted by: Guest on May-05-2021
-1

how to fetch first 10 rows in sql

select top 100 * from myTable
select top 100 colA, colB from myTable
Posted by: Guest on October-14-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language