Answers for "sql get first 100 rows"

SQL
2

how to select first row of database sql

-- select the first row of database table
select * from company limit 1
Posted by: Guest on September-14-2021
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
0

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