home / pf

albums_labels

6 rows where label_id = 5

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id label_id
6 6 6 6 Real Gone 5
2329 2329 2026 2026 Real Gone 5
2449 2449 2134 2134 Real Gone 5
3404 3404 2977 2977 Real Gone 5
4497 4497 3923 3923 Real Gone 5
29469 29469 26568 26568 Real Gone 5

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 60.376ms