home / pf

albums_artists

4 rows where artist_id = 1390

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
1522 1522 1436 1436 1390 1390
5333 5333 5083 5083 1390 1390
9058 9058 8718 8718 1390 1390
11890 11890 11548 11548 1390 1390

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.376ms