home / pf

albums_artists

5 rows where artist_id = 7181

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
13523 13523 13172 13172 7181 7181
21074 21074 20936 20936 7181 7181
24220 24220 24110 24110 7181 7181
25667 25667 25567 25567 7181 7181
26115 26115 26011 26011 7181 7181

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