技術的に同等である必要がある次のクエリがあります。
初め
select Product_ID from ProductSearchIndexData psid
where Product_ID = 946 and contains(psid.[Text], '("exp*")')
2番
SELECT [key] as Product_ID, rank
FROM CONTAINSTABLE(ProductSearchIndexData, [Text], '("exp*")')
where [key]= 946
最初のものは正しい結果を返しますが、もう一方は何も返しません。
ここに欠けているものはありますか?
ありがとう!