科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道实例演示在SQL数据库中启用全文检索

实例演示在SQL数据库中启用全文检索

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

如何在SQL中启用全文检索功能?本文将通过实例向你剖折这个问题。

作者:赛迪网技术社区 来源:赛迪网技术社区 2007年9月12日

关键字: SQL 数据库 检索 SQL Server

  • 评论
  • 分享微博
  • 分享邮件

这是一个全文索引的一个例子,首先在查询分析器中使用:

e pubs
 go

打开数据库全文索引的支持

ute sp_fulltext_database 'enable'
 go

建立全文目录ft_titles

ute sp_fulltext_catalog 'ft_titles', 'create'
go

为titles表建立全文索引数据元,UPKCL_titleidind是主键所建立的唯一索引,可由sp_help titles得知

cute sp_fulltext_table 'titles','create', 'ft_titles', 'UPKCL_titleidind'
go

设置全文索引列名

 exec sp_fulltext_column 'titles', 'title', 'add'
go
exec 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"')
go
select title, notes from titles
where freetext(title, 'computer Cooking')
go
select title, notes from titles
where freetext(title, '"computer Cooking"')
go
select title, notes from titles
where contains(title, 'computer')
go
select title, notes from titles
where freetext (*, 'computer')
go

查看本文来源

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章