日期:2014-05-18  浏览次数:20569 次

一条救命语句啊...大虾来帮忙,急呀!!!
就是一个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 '%关键字% '