5 rows sorted by animal

View and edit SQL

category animal ▼
Cat cat
Ass donkey
Poiss fish
Pfn puffin
Rex t. rex

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE "categories_with_animal_names" (
	"category"	TEXT NOT NULL UNIQUE,
	"animal"	TEXT NOT NULL,
	FOREIGN KEY("category") REFERENCES "categories"("name") on update cascade on delete restrict,
	PRIMARY KEY("category")
);