It only gets one value back is it possible to get multiple values inside? Like get test, test1 and test2.
Looking at each of the three fully visible example rows:
IsDeleted
is 1
Contains()
matches full words by default. This means test2
does not match the Contains( 'test')
predicate.Therefore the single row observed in the results is correct.
I know the full-words thing can surprise people, but it really is what you want more often then not. For example, if you search for Contains( 'Kansas')
you don't usually want records for Arkansas
.