当前位置: 代码迷 >> 综合 >> Leetcode Mysql 1821. 寻找今年具有正收入的客户(DAY 1)
  详细解决方案

Leetcode Mysql 1821. 寻找今年具有正收入的客户(DAY 1)

热度:60   发布时间:2023-11-17 17:19:02.0

文章目录

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


原题题目


在这里插入图片描述


代码实现(首刷自解)


# Write your MySQL query statement below
select customer_id
from customers
where year = 2021 and revenue > 0
  相关解决方案