home / pf

albums_artists

4 rows where artist_id = 55

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
60 60 58 58 55 55
945 945 893 893 55 55
1660 1660 1566 1566 55 55
26974 26974 26826 26826 55 55

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