Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MySQL Workbench edit data

MySQL Workbench allows one edit Select query results which seems a nice feature, yet if I rerun query the changes do not stick. Is there way to edit tables (preferably in query results). I can run update query, yet sometimes editing is more convenient.

like image 349
Serge Avatar asked Feb 07 '18 16:02

Serge


People also ask

How do I edit data in MySQL Workbench?

To edit comments in the specific table, you need to enter into edit mode. Select table, click right mouse button and choose Alter table... option. It will open a new tab in the main pane (right-hand side of the screen) with the editor.

How do I edit a column in MySQL Workbench?

Right click the table shown at the left in Schema tab of workbench and then select Alter Table . You will get a window like this -> Here you can see the column names available, edit here and click on apply.


1 Answers

You need to click "Apply" after you finish editing the data, otherwise it will not save the changes.

like image 169
ADyson Avatar answered Sep 19 '22 23:09

ADyson