Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to SEEK in SQL Server
Message
From
02/05/2005 18:16:55
 
General information
Forum:
Microsoft SQL Server
Category:
Other
Miscellaneous
Thread ID:
01010327
Message ID:
01010328
Views:
29
This message has been marked as the solution to the initial question of the thread.
>Not knowing much at all about SQL Server, I was wondering if there is a way to find a record for the next field value.
>
>Here is how I would do it in VFP:
>
>Say I have field ORDER_NO, I, 4
>
>Say I want to find a record after the record with ORDER_NO 100 (where I don't know if 101 exists):
>
>
>set near on
>seek 100 + 1
>
>
>How would you do that in SQL Server?
>
>Thank you.
>
>P.S. On a related subject, why in VFP SEEK respects SET NEAR ON and SEEK() does not?

SELECT TOP 1 * FROM SQLTable WHERE ORDER_NO>100
Fred
Microsoft Visual FoxPro MVP

foxcentral.net
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform