select
*
from
table
where
1=1 //这一步是针对所有条件均未满足(where后必须跟子句)
if(name != "" and name!=null){ and name=条件一}
if(sex != "" and sex!=null){ and sex=条件二}
。。。。。。
个人解题思路
第一种:
不额外创建表(连接查询)
首先,将所有条件单独查询并将这些语句内连接
例:
select * from tb as t1
join
(select * from tb where name=条件) as t2
on
t1.id=t2.id
join
(select * from tb where age=条件) as t3
on
t1.id=t2.id
(join........ on .......)
where
t1.sex=条件
然后 将上面的查询结果看作一个表t
select t.*,count(t.id) from t
group by t.id // 以id分组
order by count(t.id) asc //以id数量为降序
limit(0,1) //取第一行值
中间表应该存着文章表的ID和该文章对应的分类的ID。文章表作为主表,左连接上中间表,再左连接上分类表。文章表作为主表,即使一本书它没有分类,也能查询出这本书。因为一本书会有多个分类,可以使用group by或者去重函数来去掉重复的书。如果查询时想要查出一本书有几个分类,可以使用group_cat()函数把所有分类名称拼接在一起。要查询某一个分类的书时,where 后面分类ID等于要查询的分类ID即可。欢迎分享,转载请注明来源:内存溢出
评论列表(0条)