home / pf

albums_artists

5 rows where artist_id = 7333

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
14032 14032 13678 13678 7333 7333
19090 19090 18866 18866 7333 7333
22067 22067 21970 21970 7333 7333
22708 22708 22616 22616 7333 7333
24799 24799 24683 24683 7333 7333

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