Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Equivalent in SQL Server
Message
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 8 SP1
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
MS SQL Server
Divers
Thread ID:
00966840
Message ID:
00966845
Vues:
7
>I'm trying to find an efficient requivelant of Fox's $ operator for doing the same thing in SQL Server (TSQL)... like so...
>
>SELECT ID From MyTable WHERE "some text" $ MyTable.Notes
>
>So what is the equivalent of "$" in SQL Server?
>
>Thank you.

The LIKE clause should do that for you:
SELECT ID From MyTable WHERE MyTable.Notes LIKE '%sometext%'
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform