home / pf

albums_artists

5 rows where artist_id = 8196

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
16458 16458 16145 16145 8196 8196
20535 20535 20373 20373 8196 8196
22748 22748 22657 22657 8196 8196
25678 25678 25578 25578 8196 8196
26216 26216 26114 26114 8196 8196

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