Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to use sql % syntax
Message
From
13/10/2009 10:20:46
 
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
01429124
Message ID:
01429134
Views:
63
>>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
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform