本文介绍了如何在sql中创建全文索引的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用的是一个文本框和一个按钮..
i使用此表
i was using one text box and one button..
i have using this table
ISBN keywords author_name title
23232323 hi RAJKUMAR dffd
2223234 tty MANOJ KUMAR dffd
33333333333333 u RAJKUMAR GGG
44542232233 fgf MANOJ KUMAR dffd
现在我搜索了一列,例如hi,或RAJKUMAR,或者23232323,dffd任何搜索它的人。如何解决这个问题请帮助我
但我正在使用多个表
now i was search a one column for example hi or,RAJKUMAR,OR 23232323,dffd any one that was search it. how to solve this pls help me
but i was using multiple table
推荐答案
SELECT ISBN, keywords, author_name, title
FROM YourTable
WHERE ISBN LIKE '%'+@TextToSearch+'%' OR keywords LIKE '%'+@TextToSearch+'%' OR author_name LIKE '%'+@TextToSearch+'%' OR title LIKE '%'+@TextToSearch+'%'
我建议使用全文搜索。
希望,它有帮助:)
I would recommend to use full text search.
Hope, it helps :)
这篇关于如何在sql中创建全文索引的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!