home / pf

albums_artists

4 rows where artist_id = 178

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
183 183 177 177 178 178
4964 4964 4730 4730 178 178
6059 6059 5785 5785 178 178
27076 27076 26920 26920 178 178

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