- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
SELECT COUNT(DISTINCT `product_id`) AS `total`
FROM(
SELECT DISTINCT `p`.`product_id`
FROM oc_category_path cp
LEFT JOIN oc_product_to_category p2c ON (cp.category_id = p2c.category_id)
LEFT JOIN oc_product_filter pf ON (p2c.product_id = pf.product_id)
LEFT JOIN oc_product p ON (pf.product_id = p.product_id)
LEFT JOIN oc_product_description pd ON (p.product_id = pd.product_id)
LEFT JOIN oc_product_to_store p2s ON (p.product_id = p2s.product_id)
INNER JOIN `oc_product_filter` AS `pf` ON `p2c`.`product_id` = `pf`.`product_id`
WHERE IF( `p`.`quantity` > 0, 7, `p`.`stock_status_id` ) IN(7)
AND `p`.`date_available` <= NOW()
AND `p`.`status` = '1'
AND `cp`.`path_id` = '452'
AND `pf`.`filter_id` IN(241)
AND pd.language_id = '1'
AND p.status = '1'
AND p.date_available <= NOW()
AND p2s.store_id = '0'
AND cp.path_id = '452'
AND pf.filter_id IN (241)
) AS `tmp`
最佳答案
这一行...
LEFT JOIN oc_product_filter pf ON (p2c.product_id = pf.product_id)
...与此行共享表别名...
INNER JOIN `oc_product_filter` AS `pf` ON `p2c`.`product_id` = `pf`.`product_id`
这不可能发生。因此,给第二个别名一个不同的别名...
SELECT COUNT(DISTINCT product_id) total
FROM
( SELECT DISTINCT p.product_id
FROM oc_category_path cp
LEFT
JOIN oc_product_to_category p2c
ON p2c.category_id = cp.category_id
JOIN oc_product_filter pf
ON pf.product_id = p2c.product_id
JOIN oc_product p
ON p.product_id = pf.product_id
JOIN oc_product_description pd
ON pd.product_id = p.product_id
JOIN oc_product_to_store p2s
ON p2s.product_id = p.product_id
JOIN oc_product_filter pf2 -- <-- changed
ON pf.product_id = p2c.product_id
WHERE IF(p.quantity > 0, 7, p.stock_status_id ) IN(7)
AND p.date_available <= NOW()
AND p.status = 1
AND cp.path_id = 452
AND pf.filter_id IN(241)
AND pd.language_id = 1
AND p.status = 1
AND p.date_available <= NOW()
AND p2s.store_id = 0
AND cp.path_id = 452
AND pf2.filter_id IN(241) -- <-- changed
) tmp;
关于mysql - 我收到 #1066 - 不是唯一的表/别名 : 'pf' error here,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37130422/
这里我要计算PF,我们每个月都要扣pf,现在我要显示pf的总金额,这是我的数据库表结构 id first_name pf_amount pf_month badge_number
我有一个特定的物理文件。我如何获得使用该 PF 的程序列表。 AS400 中是否有任何命令(或 native 实用程序)可以获取该列表并将其提供到输出文件中? 最佳答案 命令 DSPPGMREF 做得
我是 C++ 的初学者,我在理解指向函数的指针时遇到了问题: main() { double pam(int); double (*pf)(int); pf = pam;
我很难获得 PFCollectionViewCell 的子类和 PFImageView 玩得很好. 我正在使用 Storyboards 来装配我的 PA_ProfileCollectionViewCe
这个问题在这里已经有了答案: ReferenceError: PF is not defined (1 个回答) 关闭 6 年前。 在 PrimeFaces 网站上,他们有许多如何使用其组件的示例。
我对 primefaces 的 autocomplete 有一个奇怪的行为。 当我提交没有验证错误或其他表单字段有错误的表单时,该组件工作正常。但是,如果自动完成验证失败,标签将替换为项目 @Id 字
这是我的脚本和相关的情节: library(ggplot2) library(reshape) df <- structure(list(ID = structure(1:19
我需要查询、修改、添加、删除规则。我还没有找到任何 API 来执行此操作。 我发现的最接近的是 pfctl 工具,它使用 pfctl -s 和 pfctl -f 来转储规则、修改并重新添加它们。我考虑
我已经实现了以下向导:
我应该早点问这个问题,但现在我真的厌倦了回避这个问题: 我有一个普通的数据表,例如 我有一个应用程序(用 Swift 编写),它使用 Parse 并允许用户创建帐户。我希望用户可以选择删除他们的帐户,但似乎无法弄清楚并且不确定我做错了什么。我希望用户必须验证他们的电子邮件和密码才能发
我的 jsf(spring&hibernate) 应用程序出现了一个非常棘手的问题。我在 eclipse 和 localy 上工作,我的网络应用程序运行完美,但是当涉及到在远程服务器上部署并运行它时,
我正在尝试将 css 规则应用于数据表的标题。 问题是我正在使用动态列(),我不知道如何只为标题应用 css 规则。 当我尝试为 p:column 设置样式属性时它还会更改行样式。 当我尝试只设置
我尝试了 NotificationBar PrimeFaces 的示例,但是它没有用。我收到以下 JS 错误: ReferenceError: PF is not defined 我想在使用 PF()
我有这个简单的 SSCCE: Test Testing
自定义(通过子类化)PFLogInViewController 时;我的 Logo 有问题。我使用了一张方形图片,由于某种原因它被扭曲了,实际上是扁平的。 代码如下: UIImage *logoIma
我正在尝试使用 PFLoginViewController 为我的应用程序创建一个简单的登录屏幕。我遇到的问题是能够根据 .currentUser() 输出在登录屏幕和应用程序主页之间切换。 我能够使
我正在使用 Parse 检索整数。尝试将整数转换为我写的标签: testLabel.text = [score stringValue]; “分数”是我试图获取其值的变量。当我运行它时,我收到错误消息
我正在尝试自动下载使用 SAML 保护的报告。我正在逐步介绍从浏览器 (Firefox) 访问文档时使用的步骤。除了出现第三个 PF 值外,我可以追踪信息流。第三个 PF 值首先出现在请求 heade
通常,我们使用 typedef 来获取数据类型的替代名称。例如—— typedef long int li; // li can be used now in place of long int 但是
我是一名优秀的程序员,十分优秀!