home / pf

albums_artists

5 rows where artist_id = 7945

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
15828 15828 15485 15485 7945 7945
21599 21599 21485 21485 7945 7945
22965 22965 22869 22869 7945 7945
23771 23771 23662 23662 7945 7945
25456 25456 25356 25356 7945 7945

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