sql practice Flashcards

1
Q
  1. What is the difference between an INNER JOIN and a LEFT JOIN?
A

iNNER JOIN returns only matching rows between both tables.

LEFT JOIN returns all rows from the left table and matching rows from the right table. If no match is found, NULLs are returned for the right table’s columns.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q
  1. What is the difference between WHERE and HAVING?
A

WHERE filters rows before aggregation (used with raw columns).

HAVING filters rows after aggregation (used with GROUP BY).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q
  1. What does the COUNT function do?
A

COUNT() returns the number of rows matching a condition.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q
  1. What is the difference between UNION and UNION ALL?
A

UNION removes duplicates from the result set.

UNION ALL includes all records, including duplicates.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q
  1. What is the difference between a PRIMARY KEY and a UNIQUE constraint?
A

PRIMARY KEY uniquely identifies a record and cannot be NULL.

UNIQUE ensures all values in a column are unique but can contain NULLs.

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

What is a foreign key in SQL?

A

A foreign key is a column or a set of columns that links one table to another. It ensures referential integrity by only allowing values that exist in the referenced table’s primary key or unique column.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q
  1. What is the purpose of the GROUP BY clause?
A

The GROUP BY clause is used to group rows that share a common property and aggregate them (using functions like COUNT, SUM, AVG, etc.).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q
  1. What is the difference between a self join and a regular join?
A

self join is a type of join where a table is joined with itself. This is useful when you need to compare rows within the same table, like matching employees with their managers or comparing related data in a hierarchical structure.

A regular join typically involves joining two different tables to combine rows based on a related column between them. This is more common when you have separate tables representing different entities that need to be combined, like joining a customers table with an orders table.

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