home / pf

albums_artists

4 rows where artist_id = 8749

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
17885 17885 17592 17592 8749 8749
18735 18735 18492 18492 8749 8749
19767 19767 19571 19571 8749 8749
21072 21072 20934 20934 8749 8749

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