|
-
Feb 14th, 2000, 08:40 PM
#1
Thread Starter
New Member
I have the a record postion of a table, but what i need is from that postion i need to select all the row that corresponds to the postion.
Thanks a lot
-
Feb 15th, 2000, 02:32 AM
#2
Maybe I don't know what you mean, but the select statement for all of the attributes (fields) within a row is "SELECT TABLE.* from TABLE for <condition>"
The asterik (*) selects all attributes within the table. You can then ask for them by name like TABLE.FIELD1, TABLE.FIELD2, etc.
-
Feb 16th, 2000, 12:23 PM
#3
Guru
You can retrieve the record position by a property of your DAO/ADO recordset.recordcount property -- not by using SQL commands
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
|