home / pf

albums_labels

5 rows where label_id = 900

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id label_id
2145 2145 1865 1865 Husky Pants 900
2342 2342 2037 2037 Husky Pants 900
29742 29742 26804 26804 Husky Pants 900
29835 29835 26885 26885 Husky Pants 900
29924 29924 26962 26962 Husky Pants 900

Advanced export

JSON shape: default, array, newline-delimited

CSV options:

CREATE TABLE albums_labels (
	album_id integer NOT NULL,
	label_id integer NOT NULL,
	FOREIGN KEY(album_id) REFERENCES albums(id),
	FOREIGN KEY(label_id) REFERENCES labels(id),
	UNIQUE(album_id,label_id)
);
Powered by Datasette · Queries took 65.694ms