Data Analyst- Amazon interview Questions (2025)
Amazon Data Analyst interview questions 2025 SQL Questions (1–7) 1. Find customers who purchased more than 3 times in the last month. SELECT customer_id, COUNT(*) AS purchase_count FROM orders WHERE order_date >= DATEADD(month, -1, GETDATE()) GROUP BY customer_id HAVING COUNT(*) > 3; 2. Write a query to find the second highest salary. SELECT MAX(salary) FROM employees WHERE salary < (SELECT […]