“SQL où contient une partie de la chaîne” Réponses codées

SQL où contient

SELECT * FROM mytable
WHERE column1 LIKE '%word1%'
   OR column1 LIKE '%word2%'
   OR column1 LIKE '%word3%'
DeuxAlpha

Vérifiez si la chaîne contient une sous-chaîne SQL

Declare @mainString nvarchar(100)='Amit Kumar Yadav'  
---Check here @mainString contains Amit or not, if it contains then retrun greater than 0 then print Find otherwise Not Find  
if CHARINDEX('Amit',@mainString) > 0   
begin  
   select 'Find' As Result  
end  
else  
    select 'Not Find' As Result  
Amused Angelfish

SQL où contient une partie de la chaîne

-- To find an exact string
SELECT * FROM [table] WHERE [field] LIKE '%stringtosearchfor%'.
Zealous Zebra

Réponses similaires à “SQL où contient une partie de la chaîne”

Questions similaires à “SQL où contient une partie de la chaîne”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code