URI SQL Solution 2621- Amounts Between 10 and 20

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%';

Share:

2 comments:

  1. Congratulations, you would have a solution of the exercises 2622 2623 2624 2737 2738

    ReplyDelete