home / pf

albums_artists

6 rows where artist_id = 5821

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
10214 10214 9875 9875 5821 5821
12441 12441 12101 12101 5821 5821
15808 15808 15466 15466 5821 5821
23046 23046 22950 22950 5821 5821
24585 24585 24463 24463 5821 5821
26200 26200 26098 26098 5821 5821

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