home / pf

albums_artists

4 rows where artist_id = 2652

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
3368 3368 3177 3177 2652 2652
6653 6653 6362 6362 2652 2652
11965 11965 11622 11622 2652 2652
26812 26812 26676 26676 2652 2652

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