如何在sql中搜索文本 [英] how to search text in sql

查看:62
本文介绍了如何在sql中搜索文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Textbox1键盘不工作搜索(按钮)



我想在所有概率中搜索textbox1值(键盘不工作),如下所示





键盘

不用

工作

工作



我怎样才能在sql server中搜索和编写查询。

Textbox1 Keyboard not working Search(Button)

I want to search textbox1 value (keyboard not working) in all probabilities as follows

key
keyboard
not
working
work

for that how can i search and write the query in sql server.

推荐答案

可能是这个链接有帮助:



SQL SERVER - 2008 - 创建全文目录和全文搜索
May be this link will help:

SQL SERVER - 2008 - Creating Full Text Catalog and Full Text Search


参考查询



Reference Query

SELECT DISTINCT 
       o.name AS Object_Name,
       o.type_desc
  FROM sys.sql_modules m 
       INNER JOIN 
       sys.objects o 
         ON m.object_id = o.object_id
 WHERE m.definition Like '%[ABD]%';


这篇关于如何在sql中搜索文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆