Hello
Is there a way to combine the following 3 UPDATE statements to avoid executing each statement one-by-one?
UPDATE ServicePlans
SET PlanName = 'Long Distance (In/Out of State/Country)'
WHERE PlanName = 'Long Distance A';
UPDATE ServicePlans
SET PlanName = 'Long Distance (Limited States)'
WHERE PlanName = 'Long Distance B';
UPDATE ServicePlans
SET PlanName= 'Long Distance (In/Out State)'
WHERE PlanName = 'Long Distance C';
Thank you
Is there a way to combine the following 3 UPDATE statements to avoid executing each statement one-by-one?
UPDATE ServicePlans
SET PlanName = 'Long Distance (In/Out of State/Country)'
WHERE PlanName = 'Long Distance A';
UPDATE ServicePlans
SET PlanName = 'Long Distance (Limited States)'
WHERE PlanName = 'Long Distance B';
UPDATE ServicePlans
SET PlanName= 'Long Distance (In/Out State)'
WHERE PlanName = 'Long Distance C';
Thank you