“Verifique se a string contém substring sql” Respostas de código

Verifique se a string contém substring 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 onde contém parte da string

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

Verifique se a string contém substring sql


SELECT * FROM [table]

WHERE [field] LIKE  concat ('%',[fieldname],'%') 
Worrisome Wildebeest

Respostas semelhantes a “Verifique se a string contém substring sql”

Perguntas semelhantes a “Verifique se a string contém substring sql”

Mais respostas relacionadas para “Verifique se a string contém substring sql” em Sql

Procure respostas de código populares por idioma

Procurar outros idiomas de código