2 rows

View and edit SQL

category ▼
Bij
Field

Advanced export

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

CSV options:

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