次のような1つのSQLサーバークエリで「contains」と「like」を使用したい:
select *
from product
where
contains(product.title, '"*grand theft auto 5 (inkl. A*"')
or product.title like 'grand theft auto 5 (inkl. A%'
エラーはありませんが、SQLサーバーはリクエストを終了しません。
これは機能します:
select *
from product
where
contains(product.title, '"*grand theft auto 5 (inkl. A*"')
これも機能します
select *
from product
where
product.title like 'grand theft auto 5 (inkl. A%'
これを組み合わせる私の考えは、「. A'
おもう '。' はストップワードですが、そのようなものと組み合わせることができれば、問題は解決します。
何か助けはありますか?どうもありがとう