Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Find a string within a column in sqlserver
Message
De
02/06/2008 16:12:33
 
 
À
02/06/2008 15:53:02
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Versions des environnements
Visual FoxPro:
VFP 9 SP1
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
MS SQL Server
Divers
Thread ID:
01321126
Message ID:
01321128
Vues:
13
This message has been marked as a message which has helped to the initial question of the thread.
>I just can't remember this, but I know I've done this before. I have a column in sqlserver which has two strings in it separated by a semicolon. I need to pull all the records where the string on the right of the semicolon in the column matches a specific value:
>
>Example looking for all records with 'ABC' after the semicolon in the column:
>
>Example record that would match: mytable.mycolumn = 'Anyvalue;ABC'
>Example record that would match: mytable.mycolumn = 'Anyvalue; ABC'
>Example record that would NOT match: mytable.mycolumn = 'Anyvalue' or 'Anyvalue;DEF'
>
>Note the third example - one record does NOT have a semicolon at all and if there is no semicolon, then there is no value to pull.


Would 'Anyvalue; morechars ABC' be a valid value too?
Select * From myTable Where myColumn Like '%;%ABC%'
hth
-Stefan
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform