home / pf

albums_artists

4 rows where artist_id = 9890

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
21239 21239 21114 21114 9890 9890
21240 21240 21115 21115 9890 9890
21241 21241 21116 21116 9890 9890
21242 21242 21117 21117 9890 9890

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