Learn SQLwhile you type it.

SQL mastery and typing speed — trained at the same time. Real queries, real databases, real results.

>

Three steps to fluent SQL.

No videos to sit through. Pick a query, type it for real, watch your skills compound.

01

Pick a lesson

Choose from real-world SQL queries — fundamentals, joins, subqueries, and window functions.

02

Type the query

Type the actual SQL character by character. Get instant feedback on speed and accuracy as you go.

03

Track your growth

Watch your WPM and accuracy climb, level up, earn XP, and see how you stack up on the leaderboard.

Not just SQL.

Master the frameworks that power production apps — TypeORM, Prisma, and Drizzle. Same engine, real query patterns.

query.ts
1 2 3 4 5 6 7 8 910
const orders = await dataSource
  .getRepository(Order)
  .createQueryBuilder('order')
  .innerJoinAndSelect('order.user', 'user')
  .where('order.status = :status', {
    status: 'pending',
  })
  .orderBy('order.createdAt', 'DESC')
  .take(10)
  .getMany()
QueryBuilder · Active Record · Entity decorators
TypeScriptUTF-8
TypeORM·2.1M / week
Prisma·4.2M / week
Drizzle·Fastest growing
Coming soon

SQL courses are live. ORM tracks ship next.

Start with SQL

Top SQL typists this week.

No sessions yet this week — be the first on the board.
View full leaderboard
Free to start · No credit card

Ready to level up your SQL?

Join 12,847 developers improving their SQL and typing speed simultaneously.