home / pf

albums_artists

4 rows where artist_id = 2168

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
2604 2604 2451 2451 2168 2168
4980 4980 4744 4744 2168 2168
6720 6720 6429 6429 2168 2168
26979 26979 26831 26831 2168 2168

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.604ms