how to select first 10 rows in sql code example
Example 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
Example 2: sql select first row
-- NOTE: This is for Oracle/PLSQL only
-- > EXAMPLE
select *
from CONSUMERS
where ROWNUM <= 1
/*
-- > SYNTAX
select *
from {yourTable}
where ROWNUM <= {number-of-rows}
*/