|
-
September 21st, 2001, 06:47 PM
#1
Please .. i need help..!
Hi,,
Anybody can please tell me how can i bring data from a "x" table... using fetch.. or something like that..
I work with a lot of information... so.. i need to bring data for example... 1 to 100 records.. and then.. 105 to 200 .. etc...
thanks a lot..
-
September 23rd, 2001, 11:03 PM
#2
Re: Please .. i need help..!
I'm not sure about ur data structure (ie. how do u identify 1 to 100 records.. and then.. 105 to 200 .. etc...).
Either u have to have some identification on the record number or some identification of the data one or more data fields
Any way u can use SQL statements.
Also note that the SQL may slightly vary depending on the Database u use.
The following statement may be wrong since I didn't write any Oracle PL SQL in the recent past, but is of the similar format:
Select * from x where RecordNumber > 105 and RecordNumber < 200 or
Select * from x where RecordNumber > 105 and RowCount < 200
* In the above RecordNumber / RowCount are database depending variables (ie. not our field names)
Srinika
If u don't know how to Rate an answer, then Rate my answer to learn, If u know, then practice it 
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|