Leetcode - 1193. Monthly Transactions I
2023-02-06 13:41

Leetcode - 1193. Monthly Transactions I

Problem
Solution
SELECT
DATE_FORMAT(trans_date, "%Y-%m") AS month,
country,
COUNT(id) AS trans_count,
SUM(sta...

댓글