gpt4 book ai didi

mysql - 如何从另一个MySQL中减去一行

转载 作者:太空宇宙 更新时间:2023-11-03 11:49:29 25 4
gpt4 key购买 nike

鉴于附上的表格

enter image description here

如何找到每天销售的 Mac 和 Windows 之间的差异。有人可以解释一下逻辑吗

最佳答案

INNER JOIN 可以完成这项工作。

SELECT 
WindowsTable.Date,
ABS(WindowsTable.Sold - MacTable.Sold) absoluteDifference
FROM
(SELECT
*
FROM producttable
WHERE Products = 'Windows') WindowsTable

INNER JOIN

(
SELECT
*
FROM producttable
WHERE Products = 'Mac' ) MacTable

ON WindowsTable.Date = MacTable.Date;

DEMO HERE

关于mysql - 如何从另一个MySQL中减去一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36416549/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com