home / pf

albums_artists

4 rows where artist_id = 44

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
49 49 48 48 44 44
1241 1241 1167 1167 44 44
4894 4894 4667 4667 44 44
10338 10338 9996 9996 44 44

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