home / pf

albums_artists

5 rows where artist_id = 5090

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
8533 8533 8201 8201 5090 5090
12505 12505 12166 12166 5090 5090
16761 16761 16452 16452 5090 5090
19749 19749 19553 19553 5090 5090
24191 24191 24080 24080 5090 5090

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