home / pf

albums_labels

1 row where album_id = 1123

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id label_id
1308 1308 1123 1123 XL 3

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