- 2
SQL
Write a query that selects the item name and the name of its seller for each item that belongs to a seller with a rating greater than 4.
1 Respuesta
+ 2
select name, seller from items where seller_rating > 4;
Write a query that selects the item name and the name of its seller for each item that belongs to a seller with a rating greater than 4.