Biorąc pod uwagę dane „abcdefg”
WHERE Column1 LIKE '%cde%' --can't use an index
WHERE Column1 LIKE 'abc%' --can use an index
WHERE Column1 Like '%defg' --can't use an index, but see note below
Uwaga:Jeśli masz ważne zapytania, które wymagają '%defg', możesz użyć trwałej kolumny obliczeniowej, w której REVERSE() kolumnę, a następnie ją indeksujesz. Następnie możesz zapytać o:
WHERE Column1Reverse Like REVERSE('defg')+'%' --can use the persistent computed column's index