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

# Table browser

> View, filter, sort, and edit table data in Tamery, with draft review before commit and data seeding.

The table browser is a two-panel view: a schema/table tree on the left, a data grid on the right. Filters, sort order, and column config are saved per table.

## Navigating

Expand a schema in the tree, then click a table to open it. Each open table is a **tab** at the top of the grid — switch between them without re-running queries. Close a tab with the × on its label.

## Filtering

Click **Filter** to open the panel. Each condition has three parts:

1. **Column**
2. **Operator** — `equals`, `contains`, `is null`, `greater than`, etc.
3. **Value**

Conditions combine with `AND`. Filters are saved per table in local storage.

## Sorting

Click **Sort** to pick a column and direction. Add multiple levels to break ties (e.g. `created_at` desc, then `id` asc). Stored alongside filters.

## Editing

<Steps>
  <Step title="Edit a cell">Click a cell, type a new value. Edited cells are highlighted.</Step>

  <Step title="Review drafts">
    Click **Review changes** to see every staged edit — table, column, old value, new value.
  </Step>

  <Step title="Commit or discard">
    **Commit** writes all changes in one transaction. **Discard** reverts. You can also discard
    individual changes in the review drawer.
  </Step>
</Steps>

**Delete rows** — select rows via the checkboxes, click **Delete**, confirm.

## Data seeding

Click **Seed** while a table is open. Tamery picks generators from your column names and types — names, emails, timestamps, and foreign keys referencing existing rows. Review and adjust per column, then choose how many rows to insert.

<Note>
  Seeding is a subscription feature. Free accounts get a limited number of runs. See
  [Plans](/account/plans).
</Note>

## Other actions

| Action                  | Description                                    |
| ----------------------- | ---------------------------------------------- |
| **Column visibility**   | Hide/show columns (hidden, not deleted).       |
| **Copy data**           | Copy selected rows or the whole result as TSV. |
| **Full-text search**    | Filter rows across visible columns.            |
| **Rename column**       | Right-click a column header.                   |
| **Rename / drop table** | From the toolbar menu (with confirmation).     |
