home / pf

albums_artists

4 rows where artist_id = 2210

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
2664 2664 2504 2504 2210 2210
6287 6287 6001 6001 2210 2210
9403 9403 9055 9055 2210 2210
26862 26862 26721 26721 2210 2210

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