home / pf

albums_artists

4 rows where artist_id = 7071

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
13258 13258 12914 12914 7071 7071
14521 14521 14165 14165 7071 7071
16102 16102 15774 15774 7071 7071
24979 24979 24871 24871 7071 7071

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