Tables

Structured databases with named, typed columns for organized, queryable data.

Overview

Tables are structured databases with named, typed columns. Each row is a record, each column has a defined data type. This keeps data clean, sortable, and queryable.

A table with named columns and structured data
A table with typed columns and structured data.

Use cases

  • Lists of things — companies, products, job postings, prices
  • Structured records — anything with consistent fields across rows
  • Data you want to filter or sort

Example: A “Competitors” table with columns for Company, Website, Employee Count, and Last Funding Round.

Columns

Each column has a name and a data type. The type determines what kind of values the column accepts.

TypeStoresExample
TextAny text”Acme Corp”, “New York”
IntegerWhole numbers42, 1000
NumberDecimal numbers3.14, 99.99
BooleanTrue or falsetrue, false
DateCalendar date2025-03-15
DatetimeDate and time2025-03-15 09:30:00
URLWeb linkshttps://example.com
ListMultiple values[“red”, “blue”, “green”]
JSONStructured data{“key”: “value”}

Columns can be added, renamed, retyped, or deleted from the column header context menu.

Sorting and filtering

Click a column header to sort the table by that column. Click again to reverse the sort order.

Use the filter bar above the table to narrow down visible rows — for example, show only rows where Status is “Active” or where Price is greater than 100. Filters hide rows without deleting them.

Next