SQL Foundations
Ask questions of data. Write your first query — live, in your browser, right now.
~20 minutesWhat you need: Open sqliteonline.com in a new tab. No account needed. No installation. SQL runs directly in your browser.
What you’ll do: Write your first SQL query today. By the end of this module, you will have used SELECT, FROM, WHERE, and ORDER BY — the four keywords that cover 80% of real analyst work.
SQL (pronounced “sequel”) stands for Structured Query Language. It’s how you talk to databases.
A database is a collection of organized tables — like spreadsheets, but more powerful and designed to handle millions of rows. Every company stores their important data in databases: customers, orders, employees, inventory, transactions.
You use SQL to ask questions of that data:
- “Show me all customers who spent more than $500.”
- “How many orders came in last month?”
- “Which product sold the most?”
- “Show me all employees in the North region, sorted by hire date.”
Four keywords get you 80% of the way:
SQL is the #1 skill for data analysts. It appears on almost every data job posting — entry level through senior.
Companies store everything in databases. You need SQL to get to that data. It is not optional — it is the foundation. The good news: basic SQL is simple and learnable in a single sitting. You are doing it today.
SQL is also the first step toward understanding SAP (Phase 5). SAP stores all its data in massive databases. Analysts who can write SQL queries against SAP data are extremely valuable.
One-time setup. Takes 60 seconds.
Switch to your SQLiteOnline.com tab. Type each query into the text area and click Run (or press Ctrl+Enter / Cmd+Enter).
* means “all columns.” Read the results. What columns do you see?
* (all columns), you named exactly which columns you want. This is how you reduce output to only what matters.
SQL is a language. You just spoke it for the first time. Your brain is building new neural pathways right now — that is literally what learning feels like, and it takes real energy.
Take at least 2 minutes. You earned it.
The four things you now know how to do:
What comes next: Module 3 is about data cleaning — why real data is always messy and how to fix it before you analyze it. Same tools: Google Sheets.