Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Urgently needed! SQL Syntax in retrieving records...
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Divers
Thread ID:
00616376
Message ID:
00616505
Vues:
17
>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
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform