Table Editor
Create and edit tables, columns and relationships from a clean visual UI — or drop into raw SQL anytime.
Design your schema visually or in raw SQL, run any query, and let KREO handle pooling, backups and isolation. The full power of Postgres without the operations.
-- Create a table from the SQL console
CREATE TABLE customers (
id bigserial PRIMARY KEY,
name text NOT NULL,
plan text DEFAULT 'starter',
created_at timestamptz DEFAULT now()
);
CREATE INDEX idx_customers_plan ON customers (plan);
SELECT plan, count(*) FROM customers GROUP BY plan;Create and edit tables, columns and relationships from a clean visual UI — or drop into raw SQL anytime.
Run arbitrary SQL against your own schema, confined to your organisation by a dedicated database role.
Capture point-in-time backups before risky migrations and restore in a single click.
Add indexes, views and constraints; tuned connection pooling keeps queries fast under load.
Store embeddings with pgvector and run similarity search for AI and semantic features.
Enable change events per table and stream inserts, updates and deletes to your app.
Start free with 50,000 requests per month — no credit card required.