I have the following three update statements:
UPDATE mx m JOIN main_territorypricingavail a USING (tp_id)
SET sd_price = a.price WHERE a.code = 'SDBUY';
UPDATE mx m JOIN main_territorypricingavail a USING (tp_id)
SET hd_price = a.price WHERE a.code = 'HDBUY';
UPDATE mx m JOIN main_territorypricingavail a USING (tp_id)
SET uhd_price = a.price WHERE a.code = 'UHDBUY';
Is it possible to combine these three into one statement?