home / pf

albums_artists

5 rows where artist_id = 6922

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
12807 12807 12465 12465 6922 6922
15422 15422 15079 15079 6922 6922
19688 19688 19489 19489 6922 6922
21053 21053 20912 20912 6922 6922
23501 23501 23395 23395 6922 6922

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