home / pf

albums_artists

5 rows where artist_id = 8412

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
17064 17064 16761 16761 8412 8412
19161 19161 18940 18940 8412 8412
24654 24654 24531 24531 8412 8412
25527 25527 25427 25427 8412 8412
26840 26840 26702 26702 8412 8412

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