home / pf

albums_artists

4 rows where artist_id = 7823

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
15425 15425 15082 15082 7823 7823
16326 16326 16012 16012 7823 7823
20339 20339 20168 20168 7823 7823
25083 25083 24979 24979 7823 7823

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.856ms