Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How to use sql % syntax
Message
De
13/10/2009 10:20:46
 
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Divers
Thread ID:
01429124
Message ID:
01429134
Vues:
64
>>Hi
>>I want to search the last record having some text
>>
>>mytext="ABC"
>>?SQLEXEC(lnHandle,"select ac from account where ac like '%'+mytext+'%' order by ac desc limit 1","tmp")
>>this return value -1
>>but
>>?SQLEXEC(lnHandle,"select ac from account where ac like '%ABC%' order by ac desc limit 1","tmp")
>>return value 1
>>
>>so how to combine "%" together with variable mytext ?
>
>Try
>
>
?SQLEXEC(lnHandle,"select top 1 ac from account where ac like '%'+?mytext+'%' order by ac desc limit 1","tmp")
Doesn't look right to me


>Top 1 to get the only one last record matching the criteria.
Gregory
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform