当前位置: 代码迷 >> 综合 >> Leetcode Mysql 1715. 苹果和橘子的个数(DAY 10)
  详细解决方案

Leetcode Mysql 1715. 苹果和橘子的个数(DAY 10)

热度:13   发布时间:2023-11-17 17:01:23.0

文章目录

    • 原题题目
    • 代码实现(首刷自解)


原题题目


在这里插入图片描述


代码实现(首刷自解)


# Write your MySQL query statement below
SELECT SUM(b.apple_count+if(c.chest_id is NULL,0,c.apple_count)) AS apple_count,SUM(b.orange_count+if(c.orange_count is NULL,0,c.orange_count)) AS orange_count
FROM Boxes AS b LEFT JOIN Chests AS c ON b.chest_id = c.chest_id
  相关解决方案