home / pf

albums_artists

5 rows where artist_id = 7730

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
15155 15155 14809 14809 7730 7730
16296 16296 15979 15979 7730 7730
18818 18818 18574 18574 7730 7730
19912 19912 19725 19725 7730 7730
23029 23029 22933 22933 7730 7730

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.669ms