Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Update all rows in the PhpMyAdmin

Tags:

phpmyadmin

I want to change in the PhpMyAdmin the text "pelecard" for all fields that contain this text. the table name is sales_flat_order_payment. How I can do this?

enter image description here thank you

like image 454
Robert Avatar asked Dec 24 '22 17:12

Robert


1 Answers

What is with SQL?

UPDATE sales_flat_order_payment SET method="123"

Then you change all fields to a new value. Without a where clause you change all entries.

like image 115
René Höhle Avatar answered Jan 14 '23 12:01

René Höhle