Joining Tables Flashcards

1
Q

Join

A

Combines data sets from two tables.

EX:
SELECT *
FROM orders
JOIN customers
  ON orders.customer_id = customers.customer_id;
How well did you know this?
1
Not at all
2
3
4
5
Perfectly