home / pf

albums_artists

5 rows where artist_id = 1424

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
1570 1570 1481 1481 1424 1424
3527 3527 3329 3329 1424 1424
4409 4409 4197 4197 1424 1424
8931 8931 8595 8595 1424 1424
12040 12040 11699 11699 1424 1424

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