Is there and alternative to LIKE statement in T-SQL?
问题 I have a scenario where I need to perform following operation: SELECT * FROM [dbo].[MyTable] WHERE [Url] LIKE '%<some url>%'; I have to use two % (wildcard characters) at the beginning and the end of Url ( '%<some url>%' ) as user should be able to search the complete url even if he types partial text. For example, if url is http://www.google.co.in and user types "goo", then the url must appear in search results. LIKE operator is causing performance issues. I need an alternative so that I can