Skip to content
L-SYSTEM

recommendedintermediate

SQL for QA Engineers: T-SQL in Everyday Testing

A working course in T-SQL for QA engineers in professional services firms who already know the basics — SELECT, WHERE, a simple JOIN — and now need SQL as a daily testing instrument rather than as a topic. Everything is set in ENGAGE, the fictional engagement and billing platform of Aldervane Advisory LLP: clients, engagements, staff, timesheets, approvals, invoices, an audit log and a migration staging table. One schema, carried through every unit, so the examples are the ones you actually meet — a report total that disagrees with the raw rows, a record the UI claims it saved, a migration that quietly dropped a hundred time entries, a duplicate that only appears under a business key. Each construct is introduced the same way: the problem that makes you reach for it, the construct itself, and the price it charges. LEFT JOIN buys you the missing rows and charges you row multiplication. NOLOCK buys you speed on a shared environment and charges you dirty reads. A green test that never asked the right question costs more than a red one. Nineteen core units cover reading an unfamiliar schema, staying safe on a shared test environment, NULL and three-valued logic, data types and collation, dates and time zones, joins and orphan records, set operations as reconciliation, aggregation, subqueries, CTEs, window functions, test data setup and idempotent teardown, verifying what the application wrote, reading someone else's views and triggers, and turning a SQL check into a deterministic assertion. Five optional units add a local sandbox script, execution plans, client data and AI assistants, an end-to-end migration reconciliation checklist, and normalisation as an explanation of why the schema looks the way it does. Units are open in any order: come for the whole course, or come for the one thing that is biting you today. Scope note: the course teaches you to write queries and to read them. Practice covers both; the certification exam checks reading, recognition and knowledge of constructs, since a written query cannot be machine-verified here.

Path through the course · 24 units

any order · units can be taken in any order you likeView: map · steps

  1. Stage 1

    ~0.7 h

  2. Stage 2

    ~2.3 h

    can start

  3. Stage 3

    ~0.7 h

  4. Stage 4

    ~1.7 h

    can start · Precise retrieval

  5. Stage 5

    ~1.7 h

    can start

  6. Stage 6

    ~3.3 h

    can start

  7. Stage 7

    ~1.7 h

    can start

  8. Stage 8

    ~2.3 h

    can start

  9. Stage 9

    ~1.9 h

    can start

  10. Stage 10

    ~0.9 h

  11. Stage 11

    ~1.7 h

    can start · Data before and after the test

  12. Stage 12

    ~1.5 h

  13. Exam

    closed

    • final

      Exam

The path in words
  • Stage 1 · Where SQL enters the testing cyclecan start; ~0.7 h
  • Stage 2 · Reading a schema you did not designcan start; ~0.8 h
  • Stage 2 · Staying safe on a shared test environmentcan start; ~0.8 h
  • Stage 2 · Optional: client data, PII and AI assistantscan start; optional; ~0.7 h
  • Stage 3 · A SELECT that answers exactly one questioncan start; ~0.7 h
  • Stage 4 · NULL and the logic that has three answerscan start; ~0.9 h
  • Stage 4 · Types, conversions and collationcan start; ~0.8 h
  • Stage 5 · Dates, times and the last day of the monthcan start; ~0.9 h
  • Stage 5 · INNER and LEFT: which rows the join throws awaycan start; ~0.8 h
  • Stage 6 · Orphans and links that point at nothingcan start; ~0.8 h
  • Stage 6 · When a join multiplies your rowscan start; ~0.9 h
  • Stage 6 · Set operations as reconciliationcan start; ~0.8 h
  • Stage 6 · Optional: slow queries and blocked environmentscan start; optional; ~0.8 h
  • Stage 7 · GROUP BY and recomputing the reportcan start; ~0.8 h
  • Stage 7 · Test data: setup and idempotent teardowncan start; ~0.9 h
  • Stage 8 · HAVING and finding duplicatescan start; ~0.8 h
  • Stage 8 · Subqueries and CTEscan start; ~0.8 h
  • Stage 8 · Optional: why the schema looks like thatcan start; optional; ~0.7 h
  • Stage 9 · Window functions for the testercan start; ~0.9 h
  • Stage 9 · Optional: end-to-end migration reconciliationcan start; optional; ~1 h
  • Stage 10 · Verifying what the application actually wrotecan start; ~0.9 h
  • Stage 11 · Reading views, procedures and triggerscan start; ~0.8 h
  • Stage 11 · Turning a check into a deterministic assertioncan start; ~0.9 h
  • Stage 12 · Optional: build ENGAGE locally and run the checkscan start; optional; ~1.5 h

Programme · 24 units

1Where SQL enters the testing cycle

Name the four moments in a test cycle where a database query is the only available evidence

~0.7 hcan start
2Reading a schema you did not design

Locate an unfamiliar table or column by querying INFORMATION_SCHEMA rather than browsing the object explorer

~0.8 hcan start
3Staying safe on a shared test environment

Convert every destructive statement from a SELECT with the identical FROM and WHERE, so the statement never exists without its filter

~0.8 hcan start
4A SELECT that answers exactly one question

Convert a verification question into a query whose result can only occur if the system behaved correctly

~0.7 hcan start
5NULL and the logic that has three answers

Explain why WHERE keeps only rows evaluating to true, and what that does to comparisons against NULL

~0.9 hcan start
6Types, conversions and collation

Read precision and scale from a column definition and assert against the value the column can hold rather than the value entered

~0.8 hcan start
7Dates, times and the last day of the month

Write date range filters as half-open intervals with >= and <, and explain why every inclusive upper bound has an edge case

~0.9 hcan start
8INNER and LEFT: which rows the join throws away

Choose between INNER and LEFT from the verification question, using the test that a plausible answer of 'none' requires a left join

~0.8 hcan start
9Orphans and links that point at nothing

Write orphan checks with NOT EXISTS and with the LEFT JOIN / IS NULL anti-join, testing the joined table's non-nullable key

~0.8 hcan start
10When a join multiplies your rows

Explain why a join to a non-unique key multiplies rows and why an aggregate conceals the multiplication

~0.9 hcan start
11Set operations as reconciliation

Reconcile two populations with EXCEPT in both directions, and explain why one direction alone can report success on a broken migration

~0.8 hcan start
12GROUP BY and recomputing the report

Group by the column that makes a row unique rather than the column the report displays, and explain what merging does to the result

~0.8 hcan start
13HAVING and finding duplicates

Find duplicates by grouping on the business key and filtering with HAVING COUNT(*) > 1

~0.8 hcan start
14Subqueries and CTEs

Distinguish scalar, derived-table and correlated subqueries, and identify where each fails

~0.8 hcan start
15Window functions for the tester

Explain how a window function differs from GROUP BY, and choose between them from the question

~0.9 hcan start
16Test data: setup and idempotent teardown

Write setup scripts that are idempotent, isolated and self-identifying, with teardown at the start rather than the end

~0.9 hcan start
17Verifying what the application actually wrote

Enumerate the blast radius of a write — every table an operation should touch — before writing any verification query

~0.9 hcan start
18Reading views, procedures and triggers

Retrieve the definition of a view, procedure, function or trigger, and search all module bodies for references to a table or column

~0.8 hcan start
19Turning a check into a deterministic assertion

Choose between boolean, scalar and set assertion shapes, defaulting to the violation query

~0.9 hcan start
20Optional: build ENGAGE locally and run the checks

Stand up a local SQL Server instance and create the ENGAGE database from the supplied script

~1.5 hcan start
21Optional: slow queries and blocked environments

Read the four common plan operators and interpret the gap between estimated and actual row counts

~0.8 hcan start
22Optional: client data, PII and AI assistants

Identify what counts as client data on a professional services engagement, beyond personal data

~0.7 hcan start
23Optional: end-to-end migration reconciliation

Run a layered reconciliation — population, totals, set difference, duplicates, references, distribution — and state what each layer cannot detect

~1 hcan start
24Optional: why the schema looks like that

State the single rule behind normalisation and translate it into the tester's version: duplicated facts imply a code path that is a test case

~0.7 hcan start