D8A Academy © Portfolio Platform
Build · Validate · Get Hired
Free introLeaderboardBlog
Sign inGet started
Business AnalystSQL Foundations (Free Intro)Step 1 of 6
1. Your First Mission
Lesson · ~3 min

Your First Mission

Your first week as a Business Analyst

You just joined the analytics team at a retail company. On day two, the Head of Sales stops by your desk:

"We're putting next quarter's budget behind one sales channel. Which one is actually pulling the weight? Get me the numbers."

She walks off. The answer is sitting in the company database. The tool that gets it out is SQL, and by the end of this 20-minute intro you will have pulled it yourself, in your browser, with zero setup.

ℹ️

Your mission: find which sales channel brings in the most revenue. You will build the answer one small step at a time, and run real queries along the way.

A database is just tables

Every company runs on data stored in a database. A database is a set of tables, and a table is just a spreadsheet with a strict shape: columns are the fields, rows are the records.

Here is the table you will use, called orders. Each row is a single order placed by a customer:

idcustomersegmentcountrychannelamountstatus
1Acme CorpenterpriseUSAweb4200completed
2TechStartsmbFrancemobile890completed
5CloudFirstmid-marketUSAstore1980cancelled

See the channel column (web, mobile, store, phone) and the amount? Those two hold the answer to your mission. You just have to ask the database the right question.

Why this is the BA superpower

SQL gives you independence. Instead of waiting three days for the data team to pull numbers, you answer the Head of Sales yourself in 30 seconds. That is what the rest of this intro builds toward.

Next: let's open the data and look inside.