home / pf

albums_artists

4 rows where artist_id = 4195

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
6447 6447 6155 6155 4195 4195
9883 9883 9536 9536 4195 4195
10687 10687 10353 10353 4195 4195
13406 13406 13056 13056 4195 4195

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