DeepSeek V4 Pro
deepseek/deepseek-v4-pro
- Latency
- 472ms
- Cost
- $0.00106
- Per 1,000
- $1.06
162 in · 565 out (485 reasoning) · 33 words · checks 6/6
- regex
- regex
- regex
- regex
- regex
- contains
SELECT c.name, SUM(o.amount) AS total_amount FROM customers c JOIN orders o ON c.id = o.customer_id WHERE o.ordered_at >= '2025-01-01' AND o.ordered_at < '2026-01-01' GROUP BY c.id, c.name ORDER BY total_amount DESC LIMIT 5;
Judge: Query correctly joins customers and orders, filters 2025 using date range, groups by customer with proper aggregation, orders descending by total, limits to 5, and uses portable standard SQL syntax.