home / pf

albums_artists

4 rows where artist_id = 4614

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
7334 7334 7037 7037 4614 4614
14764 14764 14410 14410 4614 4614
14765 14765 14411 14411 4614 4614
15363 15363 15021 15021 4614 4614

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