home / pf

albums_artists

5 rows where artist_id = 4022

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
5996 5996 5725 5725 4022 4022
13142 13142 12803 12803 4022 4022
18345 18345 18070 18070 4022 4022
20490 20490 20326 20326 4022 4022
21893 21893 21789 21789 4022 4022

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