SQL FETCH FIRST clause in DB2 for i SQL

FETCH FIRST clause in DB2 for i SQL
FETCH FIRST clause in DB2 for i SQL, FETCH FIRST in SQL DB2, ibmi db2, db2 for i sql, SQL, SQL TUTORIAL
FETCH FIRST clause in DB2 for i SQL

FETCH FIRST clause is used to specify the number of rows to return in the SELECT statement.

Syntax using FETCH FIRST clause

SELECT column_name(s)
FROM table_name
ORDER BY column_name(s)
FETCH FIRST number ROWS ONLY

Example #1: Select the first 2 records of the STUDENT table:

Refer STUDENT table from here.

Query:

SELECT * FROM Student 
FETCH FIRST 2 ROWS ONLY

Output:

ROLLNO   NAME                      SUBJECTID
     1   Ankur                           201
     2   Rahul                           202

Example #2: Select the first 2 records of the STUDENT table where ROLLNO is greater than 2:

Refer STUDENT table from here.

Query:

SELECT * FROM Student
where rollno > 2     
FETCH FIRST 2 ROWS ONLY

Output:

ROLLNO   NAME                      SUBJECTID
     3   Raman                           203
     4   Vimal                           204

Example #3: Select the first 2 records of the STUDENT table order by ROLLNO in descending order:

Refer STUDENT table from here.

Query:

SELECT * FROM Student
order by rollno desc 
FETCH FIRST 2 ROWS ONLY

Output:

ROLLNO   NAME                      SUBJECTID
     5   Samar                           290
     4   Vimal                           204

Example #4: Select the first record of the STUDENT table:

Refer STUDENT table from here.

Query: All below syntax are valid.

SELECT * FROM Student 
FETCH FIRST ROW ONLY

Or

SELECT * FROM Student 
FETCH FIRST ROWS ONLY

Or

SELECT * FROM Student 
FETCH FIRST 1 ROWS ONLY

Or

SELECT * FROM Student 
FETCH FIRST 1 ROW ONLY

Output:

ROLLNO   NAME                      SUBJECTID
     1   Ankur                           201

You may like these posts

  • SQL ANY Operators in DB2 for i SQL ANY operator The SQL ANY operator allows us to perform a comparison between a single column value or a range of other values. It is used to ver…
  • SQL EXCEPT keyword in DB2 for i SQL EXCEPT keyword The EXCEPT keyword returns the rows from the first sub-select query minus any matching rows from the second sub-select. Synta…
  • SQL UNION in DB2 for i SQL SQL Union operator UNION keyword is used to combine results of two or more SELECT statement to form a full select. There are some prerequisite to use …
  • SQL SELF JOIN in DB2 for i SQL Self Join A self join is a regular join, but the table is joined with itself. Syntax SELECT column_name(s) FROM table1 a, table1 b WHERE condit…
  • How SQL multiple Join Works SQL Multiple Joins A SQL query that contains the same or different join types, which are used more than once. Therefore, we can combine the multiple t…
  • SQL INTERSECT keyword in DB2 for i SQL INTERSECT keyword The INTERSECT keyword returns the rows that are same between the result set of two or more tables. Syntax of INTERSEC…

Post a Comment