猿问

mysql 中where的问题

请问怎么对所有列进行查询
select * from bookSystem where author LIKE '%".$_POST['search']."%'
我这个是对author列的,可以对所有列吗
比如我还有where bookName
where press
等等,所有列

牧羊人nacy
浏览 450回答 4
4回答

慕森王

一、1)针对author这个字段中含有POST内容的所有列:select * from bookSystem where author LIKE '%".$_POST['search']."%'2)针对bookName  这个字段中含有POST内容的所有列:select * from bookSystem where bookName  LIKE '%".$_POST['search']."%'3)针对press 这个字段中含有POST内容的所有列:select * from bookSystem where press LIKE '%".$_POST['search']."%'二、WHERE 子句1)如需有条件地从表中选取数据,可将 WHERE 子句添加到 SELECT 语句。2)语法SELECT 列名称 FROM 表名称 WHERE 列 运算符 值

慕哥6287543

针对不同的列,可以用and连接起来。类似:select * from bookSystem where author LIKE '%".$_POST['search']."%' and bookName  LIKE '%".$_POST['bookName']."%' and press LIKE '%".$_POST['press']."%' ,如果用and的话三个条件必须都要满足才可以,如果只是其中一个的话用or就可以。

慕运维8079593

and链接where条件就可以比如:where id = '1' and name = '2'

MMMHUHU

可以用'and'啊 select * from bookSystem where author LIKE '%"xxxxxxx"% ' and bookName LIKE '%"xxxxxxxx"%‘ 用and连接就是满足多个条件
随时随地看视频慕课网APP

相关分类

MySQL
我要回答