Hi,Is this possible without using full-text searching achieves this scenario?Retrieve all rows that contains word of this phrase: 'a b'Also the words of phrases is variable and much.Example:col1---------------a b c e x b w h <-- Selecteds ww b w u x o a <--Selectedy d wDECLARE @a VARCHAR(50) SET @a = N'a b';SELECT col1FROM(select 'a b c e x b w h' unionselect 'y d w' unionselect 's w' unionselect 'a w b w u x o a' )D(col1)WHERE col1 like '%' + LEFT(@a, CHARINDEX(' ', @a)-1) + '%'AND col1 LIKE '%' + REVERSE(LEFT(REVERSE(@a), CHARINDEX(' ', REVERSE(@a))-1)) + '%';/*col1---------------a b c e x b w ha w b w u x o a*/