- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想创建分面搜索。我有一些 MySQL 表:
**products_table**
id name category_set
9 Female.Jeans 157
10 Male.Jeans 157
**fields_table**
id name
1 Color
2 Gender
**fields_values_table**
id fieldsid value
1 1 White
2 1 Black
3 1 Orange
4 1 Green
5 1 Blue
6 2 Male
7 2 Female
**products_to_fields_values**
productid fields_values_id
9 5
9 7
10 5
10 6
我有 php 功能来搜索我的产品:
private function get_products ($filter) {
$per_page = (isset($filter["show_by"]) && $filter["show_by"] >= 25 && $filter["show_by"] <= 100) ? intval($filter["show_by"]) : 25;
$start = (isset($filter["page_id"]) && intval($filter["page_id"])) ? ($filter["page_id"] -1)*$per_page : 0;
$data = [];
$search_vids = false;
if (isset($filter['vid']) && is_array($filter['vid'])) {
$in_set = implode(',', array_filter($filter['vid']));
if (strlen($in_set)) {
$search_vids = true;
}
}
if ($search_vids) {
$sql_counter = 'SELECT COUNT(*) count FROM `products` WHERE 1=1';
$sql_result = 'SELECT
P.id,
P.name,
P.status
FROM `products` P, `products_to_fields_values` V WHERE 1=1';
} else {
$sql_counter = 'SELECT COUNT(*) count FROM `products` WHERE 1=1';
$sql_result = 'SELECT
`id`,
`name`,
`status`
FROM `products` WHERE 1=1';
}
if ($search_vids) {
$sql_counter .= ' AND P.id = V.productid AND V.fields_values_id IN ('.$in_set.')';
$sql_result .= ' AND P.id = V.productid AND V.fields_values_id IN ('.$in_set.')';
}
if (isset($filter['cid']) && intval($filter['cid'])) {
$sql_counter .= ' AND FIND_IN_SET(:cid, `category_set`)';
$sql_result .= ' AND FIND_IN_SET(:cid, `category_set`)';
$data[':cid'] = $filter['cid'];
}
if (isset($filter['price']['from']) && floatval($filter['price']['from'])) {
$sql_counter .= ' AND `price` >= :price_from END ';
$sql_result .= ' AND `price` >= :price_from END ';
$data[':price_from'] = $filter['price']['from'];
}
if (isset($filter['price']['to']) && floatval($filter['price']['to'])) {
$sql_counter .= ' AND `price` <= :price_to ';
$sql_result .= ' AND `price` <= :price_to ';
$data[':price_to'] = $filter['price']['to'];
}
if (isset($filter['q']) && strlen($filter['q']) > 0) {
$search = filter_var($filter['q'], FILTER_SANITIZE_STRING);
$sql_counter .= ' AND (`name` LIKE concat("%", :search_name, "%")';
$sql_result .= ' AND (`name` LIKE concat("%", :search_name, "%")';
$sql_counter .= ' OR `product_tag` LIKE concat("%", :search_tag, "%"))';
$sql_result .= ' OR `product_tag` LIKE concat("%", :search_tag, "%"))';
$data[':search_name'] = $search;
$data[':search_tag'] = $search;
}
$count = $this->db1->query($sql_counter)->single($data)['count'];
if ($search_vids) {
$sql_result .= ' GROUP BY P.id LIMIT :start, :perpage';
} else {
$sql_result .= ' LIMIT :start, :perpage';
}
$data[':start'] = $start;
$data[':perpage'] = $per_page;
$rows = $this->db1->query($sql_result)->resultset($data);
$pages = ($count >0) ? ceil($count/$per_page) : 0;
$product_list = array();
$fields = array();
$breadcrumbs = array();
$cid = 0;
if(count($rows)>0) {
foreach ($rows as $row) {
$product_list[] = $row;
}
}
$categories = new categories($this->app, $this->user);
$categories_arr = $categories->load();
if (isset($filter['cid']) && intval($filter['cid'])) { // Categories page
$sql = 'SELECT GROUP_CONCAT(fieldid) AS fields_set FROM `fields_to_categories` WHERE `category_set`= :cid';
$fields_ids = $this->db1->query($sql)->bind(':cid', $filter['cid'])->single();
if (isset($fields_ids['fields_set']) && !empty($fields_ids['fields_set'])) {
$fields = new fields($this->app, $this->user);
$fields = $fields->load_controller($fields_ids['fields_set'], false); // False = fields with status = 1
}
$breadcrumbs= $categories->getBreadcrumbs($filter['cid']);
} else {
$breadcrumbs= $categories->getBreadcrumbs($cid);
}
return array(
'products' => $product_list,
'categories' => $categories_arr["categories"],
'filter' => isset($filter['cid']) && intval($filter['cid']) && isset($fields['fields']) ? $fields['fields'] : '',
'breadcrumbs' => isset($breadcrumbs['path']) ? $breadcrumbs['path'] :'',
'total' => $count,
'pages' => intval($pages),
'status' => 1
);
}
这会给我图片: 但问题就在这里:
当我选中男性(1 个产品)时,蓝色应为 1。请查看下图。如何修复我的搜索功能?
最佳答案
您的查询存在问题,即使它与单个过滤器匹配,它也会返回产品。
由于您需要所有过滤器来匹配您需要对查询进行一些更改
这可以通过两种方式实现
计算每个产品匹配的过滤器数量,并且仅在匹配特定数量的过滤器时才返回。使用 fiddle 的示例查询
select
pfv.productid, pt.name
from
fields_table ft
inner join
fields_values_table fvt
on
(ft.id=fvt.fieldsid)
inner join
products_to_fields_values pfv
on
(pfv.fields_values_id=fvt.id)
inner join
products_table pt
on
(pt.id=pfv.productid)
inner join
product p
on
(p.productid=pt.id) <-- Assuming product table having price and 1-1 mapping
where
p.price > 500 and p.categoryid=102 and
(ft.name='color' and fvt.value='Blue')or
(ft.name='gender' and fvt.value='female')
group by
pfv.productid, pt.name
having count(*)>=2 <--Maintain the count of how many field value filters it should match. In this example we have only 2 filters
| PRODUCTID | NAME |
|-----------|--------------|
| 9 | Female.Jeans |
关于php - 分面搜索计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20796716/
关闭。这个问题是opinion-based .它目前不接受答案。 想要改进这个问题? 更新问题,以便 editing this post 可以用事实和引用来回答它. 关闭 9 年前。 Improve
我有点卡在 JavaScript 逻辑上来完成这个任务。 基本上 如果我给出一个数字(比如 30) 我想在两边都显示 5。 所以 25 26 27 28 29 30 31 32 33 34 35 这部
我编写的程序有问题。我无法获得输入字符串的正确字数,但我获得了正确的最长字符数。我不知道为什么,但这是我的代码。我正在做的是将一个字符串传递给一个函数,该函数将字符串中的所有字母大写。然后,该函数逐个
我有功能 public ArrayList vyberNahodnaPismena() { String[] seznamPismen = {"A", "Á", "B", "C", "Č",
这可以在 PGSQL 中完成吗?我有一个我创建的 View ,其中主机名、ip 和数据中心来自一个表,ifdesc 和 if stats 来自另一个表。 View 输出如下所示: hostname |
我想要一组来自订单文件的数据,这些数据可以为我提供客户编号、订单编号、产品、数量、价格以及每个订单的订单详细信息文件中的行数。我在最后一部分遇到问题。 Select Header.CustNo, He
我有属于街道的房子。一个用户可以买几套房子。我如何知道用户是否拥有整条街道? street table with columns (id/name) house table with columns
我有一套有 200 万个主题标签。然而,只有大约 200k 是不同的值。我想知道哪些主题标签在我的数据中重复得更多。 我用它来查找每个主题标签在我的数据集上重复了多少次: db.hashtags.ag
我有如下文件: { "_id" : "someuniqueeventid", "event" : "event_type_1", "date" : ISODate("2014-
我有以下三个相互关联的表: 主持人(有多个 session ) session (有多个进程) 过程 表结构如下: 主机表 - id, name session 表 - id, host_id, na
我需要根据 2 个字段对行进行计数以进行分组。 动物(一) id group_id strain_id death_date death_cause status --
我有一个 LINQ 语句,我正在努力改正,所以可能这一切都错了。我的目标是查询一个表并加入另一个表以获取计数。 地点 标识、显示 ProfilePlaces ID、PlaceID、通话、聆听 基本上P
我无法编写 Countifs 来完成我想要的。我每个月都会运行一份 claim 报告,其中包含大量按列组织的数据,并每月将其导出到 Excel 中。在一个单独的选项卡上,我有引用此数据复制到的选项卡的
我有一些数据采用此 sqlfilddle 中描述的格式:http://sqlfiddle.com/#!4/b9cdf/2 基本上,一个包含用户 ID 和事件发生时间的表。我想做的是根据用户发生事件的时
我有以下 SQL 语句: SELECT [l.LeagueId] AS LeagueId, [l.LeagueName] AS NAME, [lp.PositionId] FROM
我试图找出一个值在列中出现的平均次数,根据另一列对其进行分组,然后对其进行计算。 我有 3 张 table ,有点像这样 DVD ID | NAME 1 | 1 2 | 1 3
我有一个非常简单的 SQL 问题。我有一个包含以下列的数据库表: 零件号 销售类型(为简单起见,称之为销售类型 1、2、3、4、5) 我希望编写一个包含以下三列的查询: 零件号 Sales Type
我创建了以下存储过程,用于计算选定位置的特定范围之间每天的记录数: [dbo].[getRecordsCount] @LOCATION as INT, @BEGIN as datetime, @END
我有一个包含一组列的表,其中一个是日期列。 我需要计算该列的值引用同一个月的次数。如果一个月内,该计数的总和超过 3,则返回。 例如: ____________________ | DATE |
看XXX数据如下: lala XXX = EL String [XXX] | TXT String | MMS String 为此,XXX数据yppz是由 lala
我是一名优秀的程序员,十分优秀!