> ## Documentation Index
> Fetch the complete documentation index at: https://help.noxity.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Browse Tables and Data

> Open a table, page through rows, filter, sort, and edit values inline in phpMyAdmin.

The most common thing you'll do in phpMyAdmin is open a table and look at the data. Maybe edit a row, maybe filter to find a specific record. Everything starts from the **Browse** tab.

## The layout

<Frame caption="phpMyAdmin with a table open on the Browse tab">
  <img src="https://mintlify.s3.us-west-1.amazonaws.com/noxity/images/cpanel/database-management/phpmyadmin/browse/layout-light.png" alt="phpMyAdmin browse view with database tree and rows" className="block dark:hidden" />

  <img src="https://mintlify.s3.us-west-1.amazonaws.com/noxity/images/cpanel/database-management/phpmyadmin/browse/layout-dark.png" alt="phpMyAdmin browse view with database tree and rows" className="hidden dark:block" />
</Frame>

| 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

<Steps>
  <Step title="Pick the database from the left tree">
    Click the database name to expand it. The tables inside appear underneath, indented.
  </Step>

  <Step title="Click the table name">
    The Browse tab opens by default and shows the first 25 rows.
  </Step>

  <Step title="Page through the rows">
    Use the arrows below the table or change the page size. Setting **Show:** to 100 or 500 is faster than clicking through pages when you're scanning.
  </Step>
</Steps>

## Edit a row in place

<Steps>
  <Step title="Click the pencil icon on the row's left edge">
    The row opens in an inline edit form with one field per column.
  </Step>

  <Step title="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.
  </Step>

  <Step title="Click Go">
    The row updates. The SQL it just ran is shown above the result, so you can see exactly what happened.

    <Tip>
      To edit several rows at once, check the boxes on the left and click **With selected: Edit**. phpMyAdmin opens all of them in one form.
    </Tip>
  </Step>
</Steps>

## 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.

<Frame>
  <img src="https://mintlify.s3.us-west-1.amazonaws.com/noxity/images/cpanel/database-management/phpmyadmin/browse/search-tab-light.png" alt="Search tab with per-column filters" className="block dark:hidden" />

  <img src="https://mintlify.s3.us-west-1.amazonaws.com/noxity/images/cpanel/database-management/phpmyadmin/browse/search-tab-dark.png" alt="Search tab with per-column filters" className="hidden dark:block" />
</Frame>

For complex joins or aggregates, switch to the [SQL tab](/web-hosting/cpanel/database-management/phpmyadmin/sql). That's what it's for.

## 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, hold `Shift` and click each header in priority order.

## Delete rows

<Warning>
  Deletes are permanent. Take a backup of the table first via [Export](/web-hosting/cpanel/database-management/phpmyadmin/export) → **Custom** → **Add DROP TABLE** if it's anything important.
</Warning>

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](/web-hosting/cpanel/database-management/phpmyadmin/table-operations) and click **Empty the table (TRUNCATE)**. This is faster than `DELETE FROM ...` for large tables.

## Need a hand?

<CardGroup cols={2}>
  <Card title="Open a ticket" icon="life-ring" href="https://members.noxity.io/submitticket.php">
    Best for anything that needs an account check or a config change on our end.
  </Card>

  <Card title="Live chat" icon="messages" href="https://noxity.io/contact">
    Faster for quick questions during business hours.
  </Card>
</CardGroup>
