
문제 풀이 링크: https://datalemur.com/questions/repeated-payments Stripe SQL Interview Question | DataLemurStripe SQL Interview Question: Write a query to count the repeated payments.datalemur.com🧾 중복 결제 탐지 문제 요약목적: 동일한 merchant, credit card, 결제 금액으로 10분 이내에 발생한 중복 결제 건수를 식별하고 개수 확인조건:merchant_id, credit_card_id, amount가 모두 같아야 함결제 시각 간격이 10분 이내여야 함중복된 결제에서 첫 번째 결제는 제외하고, 이후 건만 중복 결제로 간주예: 동일 조건으로 두 ..