Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
SELECT Statement
Message
 
 
To
31/05/2001 07:28:49
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00513062
Message ID:
00513231
Views:
16
This message has been marked as a message which has helped to the initial question of the thread.
>I have a select statement that needs to search for the nearest matches in a talbe. If the user enters "T" in the search field, then the select statment to select all those records that begin with T. Set near is ON, Set Exact is Off. But what happens is that all the records that begin with T show up but so does everything after T, names with U, V,W, X, Y,Z....can anyone assist?

The correct way to do this with SQL is:

cValue = upper(alltrim(ThisForm.txtUserInput.Value)) + "%"

select ... from ... where upper(SomeField) like ?cValue

To make sure it is Rushmore optimized, SomeField needs an index tag on upper(SomeField)
Mark McCasland
Midlothian, TX USA
Previous
Reply
Map
View

Click here to load this message in the networking platform