例項演示在SQL中啟用全文檢索

2022-04-05 10:05:50 字數 1245 閱讀 2621

< doctype html public -wcdtd xhtml stricten httpwwwworgtrxhtmldtdxhtml-strictdtd> 如何在sql中啟用全文檢索功能?本文將通過例項向你剖折這個問題。這是乙個全文索引的乙個例子,首先在查詢分析器中使用:

use pubs

go--開啟資料庫全文索引的支援

execute sp_fulltext_database 'enable'

go--建立全文目錄ft_titles

execute sp_fulltext_catalog 'ft_titles', 'create'

go--為titles表建立全文索引資料元,upkcl_titleidind是主鍵所建立的唯一索引,可由sp_help titles得知

execute sp_fulltext_table 'titles','create', 'ft_titles', 'upkcl_titleidind'

go--設定全文索引列名

exec sp_fulltext_column 'titles', 'title', 'add'

goexec sp_fulltext_column 'titles', 'notes', 'add'

go--建立全文索引

exec sp_fulltext_table 'titles', 'activate'

go--填充全文索引目錄

exec sp_fulltext_catalog 'ft_titles', 'start_full'

go--使用contains和freetext

select title, notes from titles

where contains(title, '"computer cooking"')

goselect title, notes from titles

where freetext(title, 'computer cooking')

goselect title, notes from titles

where freetext(title, '"computer cooking"')

goselect title, notes from titles

where contains(title, 'computer')

goselect title, notes from titles

where freetext (*, 'computer')

go#資料庫技術

例項演示在MSSQL中啟用全文檢索

如何在sql 中啟用全文檢索功能?本文將通過例項向你剖折這個問題。這是乙個全文索引的乙個例子,首先在查詢分析器中使用 www.c hinaitpower.coml1odlwyq use pubs go www.c hinaitpower.coml1odlwyq 開啟資料庫全文索引的支援www.c h...

Sql 內外全連線的理解 例項

最近公司在招人,同事問了幾個自認為資料庫可以的應聘者關於庫連線的問題,回答不盡理想 現在在這寫寫關於它們的作用 假設有如下表 乙個為投票主表,乙個為投票者資訊表 記錄投票人ip及對應投票型別,左右連線實際說是我們聯合查詢的結果以哪個表為準 1 如右接連 right join 或 right oute...

怎樣在Nginxserver中啟用Gzip壓縮

enable gzip compression on nginx servers 原文日期 2014年7月16日 翻譯日期 2014年7月19日 翻譯人員 鐵錨速度決定一切,沒有什麼比乙個快速站點更犀利的了。當你訪問我的部落格時,我希望你有乙個良好的體驗,這也是我一直不知疲倦地壓縮全部資源和避免不必...