“SQL, gdzie zawiera część ciągu” Kod odpowiedzi

SQL, gdzie zawiera

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

Sprawdź, czy ciąg zawiera SQL Substring

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, gdzie zawiera część ciągu

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

Odpowiedzi podobne do “SQL, gdzie zawiera część ciągu”

Pytania podobne do “SQL, gdzie zawiera część ciągu”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu