Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
良い一日。
クエリがあります:
SELECT * FROM Firm WHERE name LIKE 'АВТОМОБИЛЬ%'
MsSQL 2008 でこのクエリで形態素検索を使用する方法を教えてください。
Declare @find NVarchar(20)='test' SELECT * FROM Firm WHERE name LIKE '%'+@find+'%' OR phone LIKE '%'+@find+'%'
以下を実行するだけですQuery
Query
SELECT * FROM Firm WHERE name LIKE N'АВТОМОБИЛЬ%' -- ^ Magical Code
SQL フィドル