home / pf

albums_artists

6 rows where artist_id = 182

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
187 187 180 180 182 182
1766 1766 1667 1667 182 182
3268 3268 3085 3085 182 182
4992 4992 4756 4756 182 182
5520 5520 5264 5264 182 182
6095 6095 5817 5817 182 182

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