The layout


| Area | What it shows |
|---|---|
| Left tree | All your databases. Click to expand into tables. |
| Top tabs | Browse, Structure, SQL, Search, Insert, Export, Import, Operations. |
| Main pane | Whatever the active tab is showing. On Browse, that’s the rows. |
| Below the rows | Pagination controls and per-page row count. |
Open a table
Pick the database from the left tree
Click the database name to expand it. The tables inside appear underneath, indented.
Edit a row in place
Click the pencil icon on the row's left edge
The row opens in an inline edit form with one field per column.
Change values
For text columns, type the new value. For dates, the field accepts MySQL date format (
2026-04-27 14:30:00). For NULL, click the Null checkbox.Filter rows without writing SQL
The Browse tab has a small Filter rows box at the top. Type a value and it filters case-insensitively across all visible columns. Useful for quick lookups. For anything more structured, use the Search tab. It lets you build per-column conditions through dropdowns.

Sort by a column
Click the column header. First click is ascending, second is descending, third removes the sort. The arrow next to the header shows the direction. To sort by multiple columns at once, holdShift and click each header in priority order.
Delete rows
To delete one row, click the red X icon at the row’s left edge and confirm. To delete several rows, check the boxes on the left and click With selected: Delete. To delete everything in the table without deleting the table itself, go to the Operations tab and click Empty the table (TRUNCATE). This is faster thanDELETE FROM ... for large tables.

