作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用一个子查询来返回折扣大于 15% 的所有订单的货币值(value)。列出最后的 orderid 和订单值,最高值位于顶部
这是我输入的内容:
SELECT SUM(od.orderid) As OrderID,
AS [Order Values]
FROM [Order Details] od
WHERE od.Discount =
(SELECTod.Discount
FROM [Order Details] od
GROUP BY od.discount
HAVING od.discount >.15)
GROUP BY od.quantity, od.discount, od.UnitPrice
ORDER BY [Order Values] ASC;
这是我得到的:
Msg 512, Level 16, State 1, Line 1 Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, <, <=, >, > => or when the subquery is used as an expression.
我错过了什么?
最佳答案
错误出现在 WHERE
子句中。您使用 =
表示多个值,但该运算符仅允许使用 1 个值。所以改变这个:
WHERE od.Discount =
(SELECT od.Discount
FROM [Order Details] od
GROUP BY od.discount
HAVING od.discount >.15)
对此:
WHERE od.Discount IN
(SELECT od.Discount
FROM [Order Details] od
GROUP BY od.discount
HAVING od.discount >.15)
或者这个:
WHERE od.Discount =
(SELECT TOP 1 od.Discount
FROM [Order Details] od
GROUP BY od.discount
HAVING od.discount >.15
ORDER BY od.Discount DESC)
关于mysql - 无法弄清楚我错过了什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22888673/
我无法在附加行中显示“真”、“假”、"is"和“否”按钮。 我在这里有一个应用程序:Application 请按照以下步骤使用应用程序: 1。当你打开应用程序时,你会看到一个绿色的加号按钮,点击 在此
我是一名优秀的程序员,十分优秀!