home / pf

albums_artists

5 rows where artist_id = 3542

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
5007 5007 4769 4769 3542 3542
8488 8488 8158 8158 3542 3542
12381 12381 12045 12045 3542 3542
14699 14699 14344 14344 3542 3542
15705 15705 15368 15368 3542 3542

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