home / pf

albums_artists

5 rows where artist_id = 3416

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
4712 4712 4496 4496 3416 3416
6187 6187 5908 5908 3416 3416
13750 13750 13396 13396 3416 3416
16049 16049 15718 15718 3416 3416
20056 20056 19873 19873 3416 3416

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