home / pf

albums_artists

4 rows where artist_id = 9933

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
21401 21401 21279 21279 9933 9933
25959 25959 25860 25860 9933 9933
26086 26086 25982 25982 9933 9933
26123 26123 26020 26020 9933 9933

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