Tables

Create a table from a description or a CSV, query it in plain language, add or update rows, and export the results — all through conversation. Tables open in the resource panel as soon as they're created or referenced.

Creating Tables

Describe the schema and Sim creates the table:

  • "Create a leads table with columns for name, email, company, status, and created date"
  • "Create a table that matches the structure of this CSV [attach file]"
  • "Set up an errors table with: id (text), message (text), workflow (text), timestamp (date), resolved (boolean)"
  • "Create a prospect table for outbound — company, domain, employee count, industry, ICP score, and last contacted date"
  • "Set up an enrichment results table to store output from the lead enrichment workflow: email, company, title, LinkedIn URL, fit score"

Querying Data

Ask questions about table contents in plain language:

  • "How many rows in the leads table have status 'qualified'?"
  • "Show me all records from the past 7 days where score is above 0.8"
  • "What are the top 5 most common error messages in the failures table?"
  • "Are there any duplicate emails in the contacts table?"
  • "How many prospects have an ICP score above 0.75 and haven't been contacted in the past 30 days?"
  • "What's the conversion rate from 'contacted' to 'meeting booked' in the pipeline table this month?"

Sim translates the question into a structured query and returns the results.

Adding and Updating Rows

Add individual rows, bulk-update based on a condition, or delete records — all in plain language:

  • "Add a row to the leads table: Acme Corp, jane@acme.com, status pending"
  • "Mark all rows in the queue table as processed where created_at is before today"
  • "Update the price column for all rows where tier is 'pro' to 49"
  • "Delete all rows in the test_events table"

Exporting

Export a full table or a filtered subset as a CSV. The file is saved to your workspace and can be downloaded or referenced in other workflows:

  • "Export the leads table to a CSV"
  • "Export all rows where status is 'closed' and save as a file"

Using Tables in Workflows

Tables created in Chat are immediately available in workflows via the Table tool. Reference a table by name — no additional configuration needed.

Common Questions

Yes. Describe the relationship and what you want — Sim will query both tables and combine the results.
Row limits depend on the workspace plan and deployment configuration. Use pagination for large reads; see Tables for storage and query limits.