1.3.2 SQL selecting data (multiple table) Flashcards

1
Q

what does the command NESTED SELECT do?

A

a select within another select statement.

SELECT * FROM users WHERE age > (SELECT AVG(age) FROM users);

(retrieves users with an age greater than the average age)

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

what does the command JOIN do?

A

combines data from 2 or more tables based on a related column/attribute.

SELECT users.name, orders.order_id FROM users
JOIN orders
ON users.user_id = orders.user_id;
(retrieves user names and their corresponding order IDs)

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