home / pf

albums_artists

5 rows where artist_id = 5616

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
9733 9733 9387 9387 5616 5616
13262 13262 12918 12918 5616 5616
16230 16230 15909 15909 5616 5616
19062 19062 18836 18836 5616 5616
21369 21369 21246 21246 5616 5616

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