MySQL UI lets you insert, update, and delete rows without writing SQL. You can edit a single cell with a double-click, modify an entire row from the row menu, or remove records with a confirmation step to prevent accidental deletions.Documentation Index
Fetch the complete documentation index at: https://docs.w22.dev/llms.txt
Use this file to discover all available pages before exploring further.
Adding a row
- Click Add Row in the toolbar above the table.
- A dialog opens showing every column in the table, along with each column’s data type and whether it accepts
NULL. Auto-increment columns show “Auto-generated” and can be left blank. - Fill in the values you want to insert.
- Click Insert to save the new row.
Editing a single cell
Double-click any cell in the table to open the edit dialog for that field. Update the value and click Save. For cells containing more than 100 characters, the dialog switches to a larger text area automatically so long values are easier to read and edit.Updates use the row’s primary key in the
WHERE clause to identify the correct record. If the table has no primary key, MySQL UI falls back to matching on all column values. For best results, ensure your tables have a primary key defined.Editing an entire row
To update multiple fields at once:- Click the ⋮ (more options) icon at the right end of any row.
- Select Edit row from the dropdown.
- The edit dialog opens showing all columns. Modify any fields you need.
- Click Save to apply all changes.
Deleting a row
- Click the ⋮ icon on the row you want to remove.
- Select Delete row.
- A confirmation dialog appears — click Delete to confirm.
