sql-server-full-text-search-contains-function
select top 2 * from dbo.OrbitSearchCacheLongTexts where fieldid=22
SELECT *
FROM dbo.OrbitSearchCacheLongTexts
WHERE CONTAINS(IndexedWords,'"*12345*"') and fieldid=22
SELECT *
FROM dbo.OrbitSearchCacheLongTexts where IndexedWords like '%12345%' and fieldid=22
Comments
Post a Comment