SQL
select * from Products
select *
from Products p
join Categories c on p.CategoryId = c.CategoryId
where c.Name = 'Meat'
update p
set p.Price = p.Price * 1.2
from Products p
join Categories c on p.CategoryId = c.CategoryId
where c.Name = 'Meat'