⚡
Code Typing Speed Test
How fast can you type real code? No backspace shortcuts.
SQLJOIN with aggregate
Time:0s
WPM:0
Accuracy:100%
SELECT u.name, COUNT(o.id) AS orders
FROM users u
LEFT JOIN orders o ON o.user_id = u.id
GROUP BY u.name
HAVING COUNT(o.id) > 5
ORDER BY orders DESC;
Click anywhere above or start typing to begin