当前位置: 代码迷 >> Sql Server >> 一条救命语句啊来帮忙,呀!
  详细解决方案

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

热度:370   发布时间:2016-04-27 16:02:24.0
一条救命语句啊...大虾来帮忙,急呀!!!
就是一个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 '%关键字% '
  相关解决方案