home / pf

albums_artists

5 rows where artist_id = 4549

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
7212 7212 6913 6913 4549 4549
11096 11096 10757 10757 4549 4549
14114 14114 13759 13759 4549 4549
16353 16353 16038 16038 4549 4549
19426 19426 19210 19210 4549 4549

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