Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Urgently needed! SQL Syntax in retrieving records...
Message
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00616376
Message ID:
00616505
Views:
16
>Supposing I have a string variable cDesc = "VIBR CHOL BIOV" and will use this as reference to retrieve all records with descriptions containing any of the 3 words in any order. If description field contains "Cholera due to Vibrio cholerae 01, biovar cholerae" or "Cholera due to Vibrio cholerae 01, biovar eltor", these records should be included in the resultset.
>
>Where description = "%"+cDesc+"%" clause is not sufficient to do the above problem.
>
>Any inputs are highly appreciated!
>
>TIA

Try something like:

Take the original string, add a leading ' and trailing %'
sFind=['VIBR CHOL BIOV%']

Replace each space with %' $ searchfld or '
sFind=['VIBR%' $ searchfld or 'CHOL%' $ searchfld or 'BIOV%']

Build your SQL string:
s = [select * from theTable where ] + sFind

which gives

select * from theTable where 'VIBR%' $ searchfld or 'CHOL%' $ searchfld or 'BIOV%'

Then execute the contents of s
&s
Previous
Reply
Map
View

Click here to load this message in the networking platform