- 1
Answer please
Fill in the blanks to select item names and names of customers who bought the items. Use custom names to shorten the statement. SELECT ct.name, (blank) .name FROM customers (blank) ct, items AS it WHERE it.seller_id= (blank) .id;
1 Resposta
0
you should show us your attempt first.
SELECT ct.name, it.name
FROM customers AS ct, items AS it
WHERE it.seller_id= ct.id;