root_academy
> CatalogRoot PassBlogFAQ

$ ▍

root_academy

Hands-on courses: Python, SQL, AI tools and Telegram bots.

LearnCourse catalogPricingBlog
DirectionsPythonAI toolsSQL & data
CompanyAboutFAQAffiliate program
LegalTerms of ServicePrivacyRefundsTerms of purchaseContacts

© 2026 RootAcademy

tg: @rootacademyityt: @rootacademyit

~ / ▍

  1. ~
  2. /
  3. courses
  4. /
  5. sql-data

SQL from Scratch: Query Real Data

Daniel academyInstructor: Daniel academy·beginner·Data

$49.00Get this course · $49.00

Already have an account? Log in

Try the first lesson free

One-time payment: lifetime access to this course.

or Root Pass: every course from $6/mo

$49.00
Get this course · $49.00

This course is for people who have never written a query and want the skill that sits under every analyst, backend, and data role: SQL. You will not memorize syntax from slides. From the first lesson you query a small coffee-shop database, tables of products, categories, customers, and orders, and the trainer runs your query on a real SQLite engine and checks the rows it returns. You move from a plain SELECT to filtering, sorting, aggregation, and joins across tables, the same steps a working analyst takes to answer a real question. By the end you can read a question in plain words, turn it into a query, and trust the answer, on your own data. Everything runs in your browser.

Course program

7 modules · 29 lessons

  • ├─What a database is> preview
  • ├─Your first SELECT
  • ├─Select every product name
  • ├─Select name and price
  • └─Checkpoint: first queries

By the end you will write this

A fragment of the course's final project. Every graduate writes this code with their own hands.

monthly_report.sql
SELECT c.name,
       COUNT(o.id)  AS orders,
       SUM(o.total) AS revenue
FROM customers AS c
JOIN orders    AS o ON o.customer_id = c.id
WHERE o.created_at >= DATE('now', '-30 days')
GROUP BY c.name
HAVING SUM(o.total) > 1000
ORDER BY revenue DESC
LIMIT 10;

Reviews

~/courses/sql-data/manifest

$49.00
access
lifetime · yours forever
modules
7
lessons
29
payment
crypto · SBP
refund
14 days
Get this course · $49.00

Already have an account? Log in

Try the first lesson free

or Root Pass: every course from $6/mo