Beginner option: SQLite
1. Install DB Browser for SQLite, or use SQLite through Python.
2. Create a new database file.
3. Create a table or import a CSV file.
4. Open the SQL editor.
5. Run your first SELECT query.
By Imonikhe Ayeni
This guide starts with installing a database tool and writing simple queries, then moves
through filtering, summaries, joins, common table expressions, window functions, data-quality
checks and reporting. Work through the sections in order if you are new to SQL, or use the
contents panel to find a specific topic.
SQL is a language rather than a single application. To practise it, you need a database system and a tool for writing queries. SQLite is the simplest place to start, while PostgreSQL is a strong next step for real projects.
1. Install DB Browser for SQLite, or use SQLite through Python.
2. Create a new database file.
3. Create a table or import a CSV file.
4. Open the SQL editor.
5. Run your first SELECT query.
1. Download PostgreSQL from the official PostgreSQL website.
2. Install PostgreSQL and pgAdmin.
3. Set a password for the postgres administrator account.
4. Open pgAdmin.
5. Create a database named sql_learning.
6. Open the Query Tool.
SELECT version();
A relational database stores information in tables. Each table contains rows and columns, and related tables are connected through keys.
CREATE TABLE patients (
patient_id INTEGER PRIMARY KEY,
patient_name VARCHAR(100) NOT NULL,
age INTEGER,
gender VARCHAR(30),
hospital_id INTEGER
);
INSERT INTO patients (
patient_id,
patient_name,
age,
gender,
hospital_id
)
VALUES
(1, 'Alice Brown', 45, 'Female', 101),
(2, 'Ben Smith', 62, 'Male', 102),
(3, 'Chidi Okafor', 38, 'Male', 101);
SELECT *
FROM patients;
SELECT is the command you will use most often. It retrieves columns from one or more tables.
SELECT *
FROM patients;
SELECT
patient_name,
age,
gender
FROM patients;
SELECT
patient_name AS name,
age AS patient_age
FROM patients;
SELECT DISTINCT gender
FROM patients;
WHERE limits the rows returned by a query. Conditions can be combined with AND, OR and NOT.
SELECT *
FROM patients
WHERE age >= 50;
SELECT *
FROM patients
WHERE age >= 40
AND gender = 'Female';
SELECT *
FROM patients
WHERE hospital_id IN (101, 102);
SELECT *
FROM patients
WHERE age BETWEEN 40 AND 65;
SELECT *
FROM patients
WHERE patient_name LIKE 'A%';
SELECT *
FROM patients
WHERE age IS NULL;
SELECT *
FROM patients
WHERE age IS NOT NULL;
ORDER BY controls the order of results. LIMIT is useful while exploring large tables.
SELECT
patient_name,
age
FROM patients
ORDER BY age DESC;
SELECT *
FROM patients
ORDER BY hospital_id ASC, age DESC;
SELECT *
FROM patients
ORDER BY age DESC
LIMIT 10;
SQL can create new values while the query runs. CASE is used to apply conditional logic.
SELECT
patient_name,
age,
age + 5 AS age_in_five_years
FROM patients;
SELECT
patient_name,
age,
CASE
WHEN age < 18 THEN 'Child'
WHEN age < 65 THEN 'Adult'
ELSE 'Older adult'
END AS age_group
FROM patients;
SELECT
patient_name,
COALESCE(gender, 'Not recorded') AS gender
FROM patients;
Aggregate functions reduce many rows to summary values such as counts, totals and averages.
SELECT
COUNT(*) AS patients,
AVG(age) AS mean_age,
MIN(age) AS youngest_age,
MAX(age) AS oldest_age
FROM patients;
SELECT
gender,
COUNT(*) AS patients,
AVG(age) AS mean_age
FROM patients
GROUP BY gender;
SELECT
hospital_id,
COUNT(*) AS patients
FROM patients
GROUP BY hospital_id
HAVING COUNT(*) >= 10;
Joins combine related tables. The join condition should identify how rows in one table correspond to rows in another.
CREATE TABLE hospitals (
hospital_id INTEGER PRIMARY KEY,
hospital_name VARCHAR(150),
region VARCHAR(100)
);
SELECT
p.patient_name,
p.age,
h.hospital_name
FROM patients AS p
INNER JOIN hospitals AS h
ON p.hospital_id = h.hospital_id;
SELECT
p.patient_name,
h.hospital_name
FROM patients AS p
LEFT JOIN hospitals AS h
ON p.hospital_id = h.hospital_id;
SELECT p.*
FROM patients AS p
LEFT JOIN hospitals AS h
ON p.hospital_id = h.hospital_id
WHERE h.hospital_id IS NULL;
Subqueries place one query inside another. Common table expressions, written with WITH, often make complex queries easier to read.
SELECT *
FROM patients
WHERE age > (
SELECT AVG(age)
FROM patients
);
WITH hospital_summary AS (
SELECT
hospital_id,
COUNT(*) AS patients,
AVG(age) AS mean_age
FROM patients
GROUP BY hospital_id
)
SELECT *
FROM hospital_summary
WHERE patients >= 10;
Window functions calculate values across related rows without collapsing the result into one row per group.
SELECT
patient_name,
hospital_id,
age,
ROW_NUMBER() OVER (
PARTITION BY hospital_id
ORDER BY age DESC
) AS age_rank
FROM patients;
SELECT
patient_name,
hospital_id,
age,
AVG(age) OVER (
PARTITION BY hospital_id
) AS hospital_mean_age
FROM patients;
SELECT
activity_date,
daily_responses,
SUM(daily_responses) OVER (
ORDER BY activity_date
) AS cumulative_responses
FROM response_activity;
Date syntax differs slightly across database systems. These examples use PostgreSQL-style functions.
SELECT
appointment_date,
EXTRACT(YEAR FROM appointment_date) AS year,
EXTRACT(MONTH FROM appointment_date) AS month
FROM appointments;
SELECT
patient_id,
appointment_date - referral_date AS waiting_days
FROM appointments;
SELECT
DATE_TRUNC('month', appointment_date) AS month,
COUNT(*) AS appointments
FROM appointments
GROUP BY DATE_TRUNC('month', appointment_date)
ORDER BY month;
Text functions help clean, combine and inspect character values.
SELECT
TRIM(patient_name) AS clean_name,
UPPER(gender) AS gender_upper,
patient_name || ' - ' || gender AS patient_label
FROM patients;
SELECT
REPLACE(hospital_name, 'NHS Foundation Trust', 'FT') AS short_name
FROM hospitals;
SELECT
patient_name,
LENGTH(patient_name) AS name_length
FROM patients;
SQL is useful for checking completeness, duplicates, invalid values and broken relationships before analysis.
SELECT
COUNT(*) AS total_rows,
COUNT(age) AS rows_with_age,
COUNT(*) - COUNT(age) AS missing_age
FROM patients;
SELECT
patient_id,
COUNT(*) AS occurrences
FROM patients
GROUP BY patient_id
HAVING COUNT(*) > 1;
SELECT *
FROM patients
WHERE age < 0
OR age > 120;
SELECT
COUNT(*) AS patient_rows,
COUNT(h.hospital_id) AS matched_hospital_rows
FROM patients AS p
LEFT JOIN hospitals AS h
ON p.hospital_id = h.hospital_id;
INSERT, UPDATE and DELETE change stored data. Always test the WHERE condition with SELECT before running an update or deletion.
UPDATE patients
SET gender = 'Not recorded'
WHERE gender IS NULL;
-- Check first
SELECT *
FROM patients
WHERE patient_id = 999;
-- Delete only after checking
DELETE FROM patients
WHERE patient_id = 999;
BEGIN;
UPDATE patients
SET hospital_id = 105
WHERE hospital_id = 104;
-- Review the result before saving
SELECT *
FROM patients
WHERE hospital_id IN (104, 105);
COMMIT;
-- Use ROLLBACK instead of COMMIT to undo the transaction.
Views save reusable queries. Indexes can speed up searches and joins, although they also add storage and maintenance costs.
CREATE VIEW patient_hospital_view AS
SELECT
p.patient_id,
p.patient_name,
p.age,
h.hospital_name,
h.region
FROM patients AS p
LEFT JOIN hospitals AS h
ON p.hospital_id = h.hospital_id;
SELECT *
FROM patient_hospital_view
WHERE region = 'Wales';
CREATE INDEX idx_patients_hospital_id
ON patients (hospital_id);
This example combines filtering, joining, grouping and calculated fields in one reporting query.
WITH eligible_patients AS (
SELECT
patient_id,
hospital_id,
age,
satisfaction_score
FROM patient_experience
WHERE survey_year = 2026
AND satisfaction_score IS NOT NULL
),
hospital_results AS (
SELECT
hospital_id,
COUNT(*) AS responses,
AVG(satisfaction_score) AS mean_score,
AVG(age) AS mean_age
FROM eligible_patients
GROUP BY hospital_id
)
SELECT
h.hospital_name,
h.region,
r.responses,
ROUND(r.mean_score, 2) AS mean_score,
ROUND(r.mean_age, 1) AS mean_age,
CASE
WHEN r.mean_score >= 90 THEN 'High'
WHEN r.mean_score >= 75 THEN 'Moderate'
ELSE 'Review'
END AS performance_band
FROM hospital_results AS r
INNER JOIN hospitals AS h
ON r.hospital_id = h.hospital_id
ORDER BY r.mean_score DESC;
SQL often handles extraction and aggregation, while Python or R performs further analysis, visualisation or modelling.
import sqlite3
import pandas as pd
connection = sqlite3.connect("hospital.db")
query = '''
SELECT
hospital_id,
COUNT(*) AS patients,
AVG(age) AS mean_age
FROM patients
GROUP BY hospital_id
'''
summary = pd.read_sql_query(query, connection)
connection.close()
print(summary)
library(DBI)
library(RSQLite)
connection <- dbConnect(
SQLite(),
"hospital.db"
)
summary <- dbGetQuery(
connection,
"
SELECT
hospital_id,
COUNT(*) AS patients,
AVG(age) AS mean_age
FROM patients
GROUP BY hospital_id
"
)
dbDisconnect(connection)
Readable SQL is easier to review, debug and maintain.
• Put major clauses such as SELECT, FROM and WHERE on separate lines.
• Use clear aliases such as patients AS p and hospitals AS h.
• Select only the columns you need.
• Test complex work in small steps.
• Check row counts before and after joins.
• Avoid UPDATE or DELETE without a reviewed WHERE clause.
• Comment unusual business rules.
• Keep production credentials out of scripts.
SELECT
patient_id,
age,
hospital_id
FROM patients;
Practise with a small database and write queries every day. SQL becomes familiar through repetition.
Tables, rows, columns, SELECT, aliases, WHERE, DISTINCT, ORDER BY and LIMIT.
Practice:
• Create a small patient or sales database.
• Write at least 20 filtering queries.
Aggregate functions, GROUP BY, HAVING, CASE, text functions and dates.
Practice:
• Produce a weekly or monthly summary report.
INNER JOIN, LEFT JOIN, subqueries, CTEs and data-quality checks.
Practice:
• Combine three related tables and validate the joins.
Window functions, views, indexes, transactions and connecting SQL to Python or R.
Practice:
• Build one complete reporting project from raw tables to final output.