I have a table which has thousand of records i want to
fetch only record num 100 to record num 200. Write a query
that satisfies this criteria.(Cant use any keys)
Anyone please reply ASAP!
Answers were Sorted based on User's Feedback
Answer / saeed
db2 "SELECT EmpNo FROM (SELECT EmpNo, dense_rank() over
(order by EmpNo) RNo FROM office) xyz WHERE RNo >= 100 AND
RNo<=200 "
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / vijay reddy
select * from (select * from emp ) where rownum>=1 and rownum<5
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / om yadav
mr. Prasenjit ..
when you are going to select 100 record then you select
which column base you want the record taht base you mession
on condition.
than
if any other way please tell me.........
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / om prakash yadav
select * from <Table name> where <condition>
condition:- using BETWEEN
eq:-
select * from emp where empno between( 100 to 200).
| Is This Answer Correct ? | 11 Yes | 17 No |
Answer / om prakash yadav
Note= Before i given the query it is worng pleas ignopre it.
Thanks.
========================================
using cursors you can do>
CURSOR Crs_trs IS
SELECT empno, empname, sal, deptno from emp WHERE empno
between 100 and 200;
vr_empno.empno%type;
vr_empname.empname%type;
vr_sal.sal%type;
vr_deptno.deptno%type;
BEGIN
OPEN Crs_trs;
IF crs_trs%ISOPEN THEN
LOOP
FETCH Crs_trs INTO vr_empno, vr_empname, vr_sal, vr_deptno;
dbms_output.put_line('empno__'||vr_empno );
dbms_output.put_line('empname__'||vr_empname);
dbms_output.put_line('empsalary__'||vr_empsal );
dbms_output.put_line('empdeptno__'|| vr_deptno);
EXIT WHEN Crs_trs%NOTFOUND;
END IF;
END LOOP;
CLOSE Crs_trs;
END;
| Is This Answer Correct ? | 1 Yes | 9 No |
Answer / kumar
try this one.....
select * from emp where count(*) > 100 and count (*) < 200;
| Is This Answer Correct ? | 3 Yes | 16 No |
What is sqlcode -922 ?
Why might full image copies be faster to implement than an incremental image copy?
Give a brief description of db2 isolation levels?
Where would you find information about the type of database authority held by the user?
What is a base table?
What are the contents of a DCLGEN?
I have a main program (A) where we delete some rows in table in a cursor, and we commit it in sub program(B). What will happen - will we get an error or not?
What is a subselect? Is it different from a nested select?
Mention a credible reason why select* is never given preference in an sql program that has been embedded.
What is sqlca?
What is the syntax for FETCH in DB2 ?
I have 3 cursors declared. Cursor1 retieves some data. Based on this curso2 will also fetches some data. In cursor3 (using for some updation) I'm using the data retrieved by the above 2 cursor. My question is, while working with cursor3, periodically if I give commit, will all the three crsors will be closed or only cursor3 will be closed?