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