home / pf

albums_artists

5 rows where artist_id = 7387

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
14184 14184 13824 13824 7387 7387
15248 15248 14903 14903 7387 7387
16367 16367 16053 16053 7387 7387
16954 16954 16646 16646 7387 7387
17363 17363 17065 17065 7387 7387

Advanced export

JSON shape: default, array, newline-delimited

CSV options:

CREATE TABLE albums_artists (
	album_id integer NOT NULL,
	artist_id integer NOT NULL,
	FOREIGN KEY(artist_id) REFERENCES artists(id),
	FOREIGN KEY(album_id) REFERENCES albums(id),
	UNIQUE(album_id, artist_id)
);
Powered by Datasette · Queries took 65.634ms