首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

一条救命语句啊来帮忙,呀!

2012-01-23 
一条救命语句啊...大虾来帮忙,急呀!!!就是一个information的表格有些信息包括:编号ID,标题title,出版时间u

一条救命语句啊...大虾来帮忙,急呀!!!
就是一个information   的表格有些信息包括:
编号ID,标题title,出版时间updatetime,作者author

现通过关键字搜索
  输入关键字,   搜索字段:作者或标题

进行搜索并列出结果

[解决办法]
select * from information where title like '%keyword% ' or author like '%keyword% '
[解决办法]
就是一个information 的表格有些信息包括:
编号ID,标题title,出版时间updatetime,作者author

--查标题
select * from information where title like '%关键字% '

--查作者
select * from information where author like '%关键字% '

--一起查询
select * from information where author like '%关键字% ' or title like '%关键字% '

热点排行