home / pf

albums_artists

7 rows where artist_id = 2683

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
3424 3424 3232 3232 2683 2683
10567 10567 10229 10229 2683 2683
16170 16170 15847 15847 2683 2683
19670 19670 19470 19470 2683 2683
23269 23269 23167 23167 2683 2683
25330 25330 25229 25229 2683 2683
25740 25740 25640 25640 2683 2683

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