使用Sql server搜索条件

时间:2017-07-15 14:54:36

标签: sql sql-server tsql

我需要创建一个过程来从表中返回传递参数的匹配条件 例如: -

parameter - The big
related match from the table - The Big Bang
                               The Big
                               The big 
                               The big bang

我可以使用排序规则进行区分大小写的搜索 输出应该是“大”。它必须得到最接近的匹配 谁能帮助我做到这一点?

1 个答案:

答案 0 :(得分:1)

这样的事情:

create procedure usp_search 
(
  @SearchCriteria nvarchar(500)
)  
as 
begin 

select Title
from movies
where @SearchCriteria = Title COLLATE Latin1_General_CS

end