home / pf

albums_artists

4 rows where artist_id = 7600

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
14750 14750 14395 14395 7600 7600
16125 16125 15798 15798 7600 7600
16281 16281 15965 15965 7600 7600
17016 17016 16711 16711 7600 7600

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