Knowledge Guide
HomeDatabasesSQL Practice Problems

Unused Accounts

Problem

Table: Accounts

+---------------+---------+
| Column Name   | Type    |
+---------------+---------+
| account_id    | int     |
| account_name  | varchar |
+---------------+---------+
account_id is the primary key (column with unique values) for this table.
Each row of this table contains the ID and the name of an account in the bank.

Table: Transactions

+---------------+---------+
| Column Name   | Type    |
+---------------+---------+
| transaction_id| int     |
| account_id    | int     |
| transaction_date | date |
+---------------+---------+
transaction_id is the primary key (column with unique values) for this table.
Each row of this table contains the ID of a transaction, the ID of the account that initiated the transaction, and the date when the transaction was made.

Problem Definition

Write a solution to find all accounts that did not make any transactions in 2020.

Return the result table ordered by account_name in ascending order.

Example

Input: 
Accounts table:
+------------+--------------+
| account_id | account_name |
+------------+--------------+
| 1          | Alice        |
| 2          | Bob          |
| 3          | Charlie      |
+------------+--------------+
Transactions table:
+----------------+------------+-----------------+
| transaction_id | account_id | transaction_date|
+----------------+------------+-----------------+
| 1              | 1          | 2020-09-01      |
| 2              | 2          | 2020-09-02      |
| 3              | 1          | 2020-09-03      |
| 4              | 3          | 2019-08-21      |
| 5              | 2          | 2021-07-03      |
+----------------+------------+-----------------+
Output: 
+--------------+
| account_name |
+--------------+
| Charlie      |
+--------------+

Try It Yourself

java
-- TODO: Write your user queries here

Solution

To identify all accounts that did not make any transactions in the year 2020, we can leverage SQL's LEFT JOIN along with conditional filtering. This approach allows us to include all accounts and exclude those that have associated transactions in the specified year.

SQL Query

SELECT A.account_name FROM Accounts AS A LEFT JOIN Transactions AS T ON A.account_id = T.account_id AND YEAR(transaction_date) = '2020' WHERE T.account_id IS NULL ORDER BY account_name ASC;

Step-by-Step Approach

Step 1: Perform a Left Join Between Accounts and Transactions for the Year 2020

Combine the Accounts and Transactions tables to associate each account with its transactions in the year 2020. The LEFT JOIN ensures that all accounts are included, even if they have no transactions in 2020.

SQL Query:

SELECT A.account_name, T.account_id FROM Accounts AS A LEFT JOIN Transactions AS T ON A.account_id = T.account_id AND YEAR(transaction_date) = '2020';

Explanation:

Output After Step 1:

Assuming the example input provided, the intermediate result after the LEFT JOIN would be:

+--------------+------------+ | account_name | account_id | +--------------+------------+ | Alice | 1 | | Bob | 2 | | Charlie | NULL | +--------------+------------+

Step 2: Filter Accounts Without Transactions in 2020

Identify accounts that did not make any transactions in 2020 by selecting records where the joined Transactions data is NULL.

SQL Query:

SELECT A.account_name FROM Accounts AS A LEFT JOIN Transactions AS T ON A.account_id = T.account_id AND YEAR(transaction_date) = '2020' WHERE T.account_id IS NULL;

Explanation:

Output After Step 2:

Based on the intermediate result, the filtered output would be:

+--------------+ | account_name | +--------------+ | Charlie | +--------------+

Step 3: Order the Results by Account Name in Ascending Order

Sort the final list of accounts alphabetically by account_name to present the data in an organized and readable manner.

SQL Query:

ORDER BY account_name ASC;

Explanation:

Final Output:

+--------------+ | account_name | +--------------+ | Charlie | +--------------+
🤖 Don't fully get this? Learn it with Claude

Stuck on Unused Accounts? Open Claude, copy a block below, and it'll teach you this exact concept — visually and interactively.

🎨 Explain it visually

Build the mental picture, not memorization.

I just read a lesson on **Unused Accounts** (Databases) and want to truly understand it. Explain Unused Accounts from first principles using ONE vivid real-world analogy and a visual mental model — draw it as ASCII art or a clear step-by-step diagram — with a concrete example using real numbers. Then ask me one question to check I got the mental picture, and wait for my reply. If you're unsure or a claim isn't standard, say so and reason from first principles instead of guessing.
🤔 Walk me through it (interactive)

Socratic — adapts to where you're stuck.

Teach me **Unused Accounts** interactively. Ask me ONE guiding question at a time, wait for my answer, and adapt to my confusion — build the idea with me step by step instead of explaining it all at once. If you're unsure or a claim isn't standard, say so and reason from first principles instead of guessing.
🧪 Quiz me & fix my gaps

Active recall exposes what you missed.

Quiz me on **Unused Accounts** with 5 questions, easy to tricky, ONE at a time. Tell me if each answer is right; at the end, explain clearly what I got wrong and why. If you're unsure or a claim isn't standard, say so and reason from first principles instead of guessing.
🧠 Make it stick

Intuition + hook + flashcards for long-term memory.

Help me remember **Unused Accounts** for the long term: give the one-sentence intuition, a memorable hook/mnemonic, a tiny worked example, and 3 active-recall flashcards (Q -> A). If you're unsure or a claim isn't standard, say so and reason from first principles instead of guessing.

📝 My notes