select p.name
from products as p
inner join providers as pr on p.id_providers=pr.id
where (p.amount between 10 and 20)
and
pr.name like 'P%';
from products as p
inner join providers as pr on p.id_providers=pr.id
where (p.amount between 10 and 20)
and
pr.name like 'P%';
Congratulations, you would have a solution of the exercises 2622 2623 2624 2737 2738
ReplyDeleteThank you.
Delete