home / pf

albums_artists

6 rows where artist_id = 3139

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
4240 4240 4039 4039 3139 3139
9570 9570 9224 9224 3139 3139
11783 11783 11443 11443 3139 3139
15229 15229 14884 14884 3139 3139
16839 16839 16530 16530 3139 3139
19698 19698 19500 19500 3139 3139

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