डेटा '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
नोट:यदि आपके पास महत्वपूर्ण प्रश्न हैं जिनके लिए '% defg' की आवश्यकता है, तो आप एक सतत गणना वाले कॉलम का उपयोग कर सकते हैं जहां आप कॉलम को रिवर्स() करते हैं और फिर इसे इंडेक्स करते हैं। इसके बाद आप इस पर पूछताछ कर सकते हैं:
WHERE Column1Reverse Like REVERSE('defg')+'%' --can use the persistent computed column's index