home / pf

albums_artists

4 rows where artist_id = 5172

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
8708 8708 8376 8376 5172 5172
9009 9009 8669 8669 5172 5172
11959 11959 11616 11616 5172 5172
12499 12499 12160 12160 5172 5172

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