home / pf

albums_artists

5 rows where artist_id = 142

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
147 147 142 142 142 142
3803 3803 3601 3601 142 142
6157 6157 5878 5878 142 142
7595 7595 7288 7288 142 142
10279 10279 9939 9939 142 142

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