SQL Flashcards

1
Q

How to get all books record created last 7 days in SQL query?

A
SELECT *
FROM books
WHERE created_at >= CURRENT_DATE - INTERVAL 7 DAY;
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How to get ordering in sql query?

A
SELECT column1, column2, ...
FROM table_name
ORDER BY column_name [ASC | DESC];
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How to get only 5 results in sql query?

A
SELECT *
FROM books
LIMIT 5;
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How to count the total number of records in table?

A
SELECT COUNT(*) AS total_records 
FROM your_table;
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How to count only non-null values in a specific column in SQL?

A
SELECT COUNT(column_name) AS total_records 
FROM your_table;
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How to count only records that meet a specific condition in SQL?

A
SELECT COUNT(*) AS total_records 
FROM your_table 
WHERE status = 'active';
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How to sum some numeric data in column?

A
SELECT SUM(amount) AS total_amount 
FROM sales;
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How to get author name and book name, when book and author are separate tables?

A
SELECT authors.name, books.name
FROM authors
INNER JOIN books ON authors.id = books.author_id;
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What are different types of JOIN?

A

INNER JOIN
LEFT JOIN
RIGHT JOIN
FULL JOIN
CROSS JOIN
SELF JOIN

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

INNER JOIN (Default Join)

A

Returns only the matching rows from both tables.
~~~
SELECT A.column, B.column
FROM TableA A
INNER JOIN TableB B ON A.id = B.id;
~~~

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

LEFT JOIN (LEFT OUTER JOIN)

A

Returns all rows from the left table and matching rows from the right table. If no match is found, NULL is returned for columns from the right table.
~~~
SELECT A.column, B.column
FROM TableA A
LEFT JOIN TableB B ON A.id = B.id;
~~~

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

RIGHT JOIN (RIGHT OUTER JOIN)

A

Returns all rows from the right table and matching rows from the left table. If no match is found, NULL is returned for columns from the left table.
~~~
SELECT A.column, B.column
FROM TableA A
RIGHT JOIN TableB B ON A.id = B.id;
~~~

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

FULL JOIN (FULL OUTER JOIN)

A

Returns all records when there is a match in either table. If no match is found, NULL is returned for columns from the missing table.
~~~
SELECT A.column, B.column
FROM TableA A
FULL JOIN TableB B ON A.id = B.id;
~~~

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

CROSS JOIN

A

Returns a Cartesian product of both tables (every row from TableA is combined with every row from TableB).

SELECT A.column, B.column
FROM TableA A
CROSS JOIN TableB B;

Example response:
J.K. Rowling Harry Potter
J.K. Rowling 1984
J.K. Rowling Animal Farm
J.K. Rowling Pride and Prejudice
George Orwell Harry Potter
George Orwell 1984
George Orwell Animal Farm
George Orwell Pride and Prejudice
Mark Twain Harry Potter
Mark Twain 1984
Mark Twain Animal Farm
Mark Twain Pride and Prejudice
Jane Austen Harry Potter
Jane Austen 1984
Jane Austen Animal Farm
Jane Austen Pride and Prejudice

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

SELF JOIN

A

A table joins itself using an alias.

SELECT A.name AS Employee, B.name AS Manager
FROM employees A
JOIN employees B ON A.manager_id = B.id;

Example:
(Let’s assume authors has a recommended_author_id column linking to another author.)

author recommended_author
J.K. Rowling George Orwell
Mark Twain Jane Austen

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What are operators for creating, editing, removing data?

A

Creating Data (INSERT)
Editing Data (UPDATE)
Removing Data (DELETE)
Removing All Data and Table (TRUNCATE & DROP)
Creating a Table (CREATE TABLE)
Modifying Table Structure (ALTER TABLE)

17
Q

Creating Data (INSERT)

A
INSERT INTO employees (name, age, position) 
VALUES ('Alice', 30, 'Developer');

```

INSERT INTO employees (name, age, position)
VALUES
(‘Bob’, 28, ‘Designer’),
(‘Charlie’, 35, ‘Manager’);
~~~

18
Q

Editing Data (UPDATE)

A
UPDATE employees 
SET position = 'Senior Developer' 
WHERE name = 'Alice';

```

UPDATE employees
SET age = 31, position = ‘Lead Developer’
WHERE name = ‘Alice’;
~~~

19
Q

Removing Data (DELETE)

A
DELETE FROM employees 
WHERE name = 'Charlie';

```

DELETE FROM employees
WHERE age > 60;

```

DELETE FROM employees;
20
Q

Removing All Data and Table (TRUNCATE & DROP)

A

(Delete rows, keep table)

TRUNCATE TABLE employees;

(Remove entire table)
~~~
DROP TABLE employees;
~~~

21
Q

Modifying Table Structure (ALTER TABLE)

A
ALTER TABLE employees 
ADD salary DECIMAL(10,2);

```

ALTER TABLE employees
MODIFY age SMALLINT;

```

ALTER TABLE employees 
CHANGE COLUMN position job_title VARCHAR(50);

```

ALTER TABLE employees
DROP COLUMN salary;
~~~

22
Q

What are TRANSACTIONS?

A

A transaction in SQL is a sequence of operations performed as a single unit of work. A transaction follows the ACID properties to ensure database integrity.

BEGIN TRANSACTION;

UPDATE accounts SET balance = balance - 500 WHERE name = 'Alice';
UPDATE accounts SET balance = balance + 500 WHERE name = 'Bob';

COMMIT;  -- Saves the transaction
23
Q

What is ACID?

A

Atomicity All operations in a transaction must complete fully or not at all. If one step fails, everything is rolled back.

Consistency The database must move from one valid state to another valid state. No partial or corrupt data is allowed.

Isolation Transactions must not interfere with each other. One transaction’s changes should not be visible until it is committed.

Durability Once a transaction is committed, the changes are permanently saved, even in case of system failures.

24
Q

What if TRANSACTION will went wrong?

A

If something goes wrong (e.g., second query fails), we can undo the first step using ROLLBACK.
~~~
BEGIN TRANSACTION;

UPDATE accounts SET balance = balance - 500 WHERE name = ‘Alice’;

– Simulating an error
IF (SELECT balance FROM accounts WHERE name = ‘Alice’) < 0 THEN
ROLLBACK;
ELSE
UPDATE accounts SET balance = balance + 500 WHERE name = ‘Bob’;
COMMIT;
END IF;
~~~

25
Q

How to make partial ROLLBACK in TRANSACTION?

A

You can create a checkpoint and roll back only part of a transaction.
~~~
BEGIN TRANSACTION;

UPDATE accounts SET balance = balance - 500 WHERE name = ‘Alice’;
SAVEPOINT after_deduction; – Savepoint here

UPDATE accounts SET balance = balance + 500 WHERE name = ‘Bob’;

– If something goes wrong, rollback to the savepoint
ROLLBACK TO after_deduction;

COMMIT;
~~~

26
Q

What is INDEX?

A

An INDEX in SQL is a performance optimization feature that makes queries faster by allowing the database to find data quickly instead of scanning the entire table.

CREATE INDEX idx_lastname ON employees(last_name);
27
Q

Why use INDEX?

A

Without an index, when you run:

SELECT * FROM employees 
WHERE last_name = 'Smith';

❌ The database scans every row in the employees table (called a full table scan), which is slow for large datasets.

✅ With an index on last_name, the database jumps directly to matching rows, making the query much faster.

28
Q

What are migrations?

A

A migration is a way to manage database schema changes in a structured and version-controlled manner. Instead of manually running SQL commands to modify the database, migrations help developers track, apply, and revert schema changes using code.

Think of migrations as a “version history” for your database, just like Git tracks code changes.