Oct 16, 2024
amount: $1, customer ID: null
(e.g., cash transaction).customer ID
.Poppy Puff
.SELECT * FROM transactions INNER JOIN customers ON transactions.customer_ID = customers.customer_ID
customer_IDs
.
customer IDs
, e.g., $1 transaction or Poppy Puff.SELECT * FROM transactions LEFT JOIN customers ON transactions.customer_ID = customers.customer_ID
customer_ID
in the right table.SELECT * FROM customers RIGHT JOIN transactions ON transactions.customer_ID = customers.customer_ID
transaction ID
, amount
, first name
, and last name
.customer_ID
).