MySQL UI gives you three tools to narrow down what you see in the data view: sorting by column, full-text search, and column filters. You can use all three at the same time, and they apply instantly without reloading the page.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.
Sorting
Click any column header to sort the table by that column. Clicking the same header cycles through three states:- Ascending (↑) — lowest to highest, A to Z, oldest to newest
- Descending (↓) — highest to lowest, Z to A, newest to oldest
- No sort — returns to the default order
Search
Type in the Search across text columns… bar in the toolbar and press Enter to search. MySQL UI scans all text-based columns in the table and returns rows that contain your search term in any of them. To clear an active search, click the × button that appears inside the search bar, or delete the text and press Enter.Filters
Filters let you build precise conditions on any column. Click the Filters button in the toolbar to open the filter dialog.Adding a filter
- Click Add Filter in the dialog.
- Choose a column from the first dropdown.
- Choose an operator from the second dropdown.
- Enter a value in the text field (not required for
IS NULLandIS NOT NULL). - Repeat to add more filters, then click Apply Filters.
| Operator | Meaning |
|---|---|
= | Exactly equals |
!= | Does not equal |
> | Greater than |
< | Less than |
>= | Greater than or equal to |
<= | Less than or equal to |
LIKE | Contains (use % as a wildcard) |
NOT LIKE | Does not contain |
IS NULL | Field is empty / null |
IS NOT NULL | Field has any value |
IN | Matches any value in a comma-separated list |
