home / pf

albums_artists

5 rows where artist_id = 5408

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
9289 9289 8943 8943 5408 5408
11832 11832 11491 11491 5408 5408
12790 12790 12448 12448 5408 5408
13458 13458 13106 13106 5408 5408
14800 14800 14446 14446 5408 5408

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