home / pf

albums_artists

7 rows where artist_id = 2356

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
2888 2888 2719 2719 2356 2356
7343 7343 7046 7046 2356 2356
21425 21425 21303 21303 2356 2356
21426 21426 21304 21304 2356 2356
21427 21427 21305 21305 2356 2356
21428 21428 21306 21306 2356 2356
23180 23180 23079 23079 2356 2356

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