select first row 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}

*/

Example 3: How to display top 50 rows?

In MySQL, top 50 rows are displayed by using this following query:
SELECT * FROM
LIMIT 0, 50;

Tags:

Sql Example