home / pf

albums_artists

6 rows where artist_id = 3504

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
4915 4915 4685 4685 3504 3504
8163 8163 7844 7844 3504 3504
14646 14646 14291 14291 3504 3504
17036 17036 16734 16734 3504 3504
17665 17665 17370 17370 3504 3504
19948 19948 19760 19760 3504 3504

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