home / pf

albums_artists

4 rows where artist_id = 9459

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
19902 19902 19713 19713 9459 9459
21624 21624 21510 21510 9459 9459
23078 23078 22978 22978 9459 9459
26551 26551 26439 26439 9459 9459

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