Skip to main content

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.

MySQL UI provides four table-level operations that go beyond editing data or schema: renaming a table, duplicating it, clearing all its rows, and deleting it entirely. These actions are all available from the toolbar at the top of the table panel.

Accessing the menu

Select a table from the sidebar, then click the (more options) button in the top-right corner of the table panel. A dropdown menu lists all available operations.

Operations

Click Rename table in the menu. A dialog opens pre-filled with the current table name.
  1. Edit the name to your desired value.
  2. Click Rename to confirm.
The table is renamed immediately and the sidebar updates to reflect the new name. You can reverse this at any time by renaming the table back to its original name.
Click Duplicate table in the menu. A dialog opens with a suggested name based on the current table (for example, orders_copy).
  1. Enter the name for the new table.
  2. Click Duplicate to confirm.
MySQL UI creates the new table with the same structure as the original and copies all rows into it. The duplicate is independent — changes to the original table will not affect the copy, and vice versa.
Click Truncate table in the menu. A confirmation dialog explains that all rows will be permanently deleted.Click Truncate to proceed.Every row in the table is deleted, but the table itself — its columns, indexes, and constraints — remains intact. The table is empty and ready to accept new data.
Click Drop table in the menu. A confirmation dialog warns that the table and all of its data will be permanently deleted.Click Drop Table to proceed.The table is removed from the database entirely and disappears from the sidebar.
Truncate and drop are permanent and cannot be undone. If you might need the data later, export the table first using Export table from the same menu before proceeding.

Operation summary

OperationRemoves rows?Removes table?Reversible?
RenameNoNoYes (rename back)
DuplicateNoNoYes (drop copy)
TruncateYes (all)NoNo
DropYes (all)YesNo