Answers for "sql select first 10"

SQL
1

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}

*/
Posted by: Guest on January-21-2021
-1

How to display top 50 rows?

In MySQL, top 50 rows are displayed by using this following query:
SELECT * FROM
LIMIT 0, 50;
Posted by: Guest on December-22-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language