What is the equivalent command in SQL Server for VFP Seek?
Thanks in advance.
-Vince
Printable View
What is the equivalent command in SQL Server for VFP Seek?
Thanks in advance.
-Vince
Don't know what VFP seek is.Quote:
Originally Posted by vincentg
Visual Fox Pro Seek Command.
or Getting to a specific record position.
How about Find?
SQL server is pure RDBMS and conforms to te RDBMS standards. It understands only SQL commands. The equivalent of "seek" will be
"select * from myTable where myColumn = myValue"
where myValue will be the argument that you pass with "seek" command.