I have to update different rows I have written below queries but it is fine with few records but what will the way to do this is just one query. I have other similar question but did not find matching case with my scenario.
UPDATE sample_topup SET meta_value='topup' WHERE meta_key='status' ;
UPDATE sample_topup SET meta_value='Topup' WHERE meta_key='status_label' ;
UPDATE sample_topup SET meta_value='tage-1' WHERE meta_key='stage' ;
UPDATE sample_topup SET meta_value='Stage 1' WHERE meta_key='lapp_stage_label' ;
I want the solution which gives the faster and smooth execution because in my table there are more than 10,000,000 records.