home / pf

albums_artists

5 rows where artist_id = 6997

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
13058 13058 12721 12721 6997 6997
15555 15555 15213 15213 6997 6997
16428 16428 16114 16114 6997 6997
18754 18754 18512 18512 6997 6997
21220 21220 21095 21095 6997 6997

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