home / pf

albums_artists

6 rows where artist_id = 4205

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
6470 6470 6178 6178 4205 4205
8886 8886 8552 8552 4205 4205
10734 10734 10400 10400 4205 4205
14619 14619 14264 14264 4205 4205
16413 16413 16099 16099 4205 4205
17224 17224 16921 16921 4205 4205

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