[leetcode][Database][Hard] 1336. Number of Transactions per Visit

1 · ZhengWei, Liu · Dec. 12, 2022, 4:38 p.m.
Description Table: Visits +---------------+---------+ | Column Name | Type | +---------------+---------+ | user_id | int | | visit_date | date | +---------------+---------+ (user_id, visit_date) is the primary key for this table. Each row of this table indicates that user_id has visited the bank in visit_date. Table: Transactions +------------------+---------+ | Column Name | Type | +------------------+---------+ | user_id | int | | transaction_date | date | | amount | int | +------------------+...