home / pf

albums_artists

5 rows where artist_id = 5019

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
8364 8364 8040 8040 5019 5019
10208 10208 9869 9869 5019 5019
14523 14523 14167 14167 5019 5019
16743 16743 16434 16434 5019 5019
20131 20131 19954 19954 5019 5019

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