home / pf

albums_labels

5 rows where label_id = 1962

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id label_id
6730 6730 5862 5862 Avalanche 1962
11334 11334 9914 9914 Avalanche 1962
11681 11681 10226 10226 Avalanche 1962
12717 12717 11165 11165 Avalanche 1962
29710 29710 26778 26778 Avalanche 1962

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