home / pf

albums_artists

5 rows where artist_id = 7993

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
15931 15931 15594 15594 7993 7993
18261 18261 17982 17982 7993 7993
20510 20510 20346 20346 7993 7993
21639 21639 21526 21526 7993 7993
22581 22581 22487 22487 7993 7993

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