home / pf

albums_artists

6 rows where artist_id = 186

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
191 191 184 184 186 186
837 837 791 791 186 186
2267 2267 2126 2126 186 186
3736 3736 3537 3537 186 186
11656 11656 11320 11320 186 186
26770 26770 26638 26638 186 186

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