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小提琴