|
-
Jan 17th, 2003, 02:53 AM
#1
Thread Starter
Addicted Member
Specific Row in a table
Im using SQL 7.0. I have 1 table with 6,000 records. How can I go to record 101 (i mean row 101 of my table) using a sql statement. Does anybody?
thanks in advance
-
Jan 17th, 2003, 02:56 AM
#2
SELECT TOP 1 * FROM Table WHERE FieldA NOT IN (SELECT TOP 100 FieldA FROM Table)
-
Jan 17th, 2003, 03:12 PM
#3
Frenzied Member
if there is a specific identifier for that record (such as a unique record number or something) then you can do
SELECT * FROM tablename WHERE recordnumber = " & txtRecordNumber.Text & "
this really depends on how you specify getting the recordnumber, whether it will be hard coded or there will be something like a textbox that a user can enter a recordnumber into.
Being educated does not make you intelligent.
Need a weekend getaway??? Come Visit
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
|