home / pf

albums_artists

5 rows where artist_id = 78

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
83 83 81 81 78 78
1221 1221 1151 1151 78 78
3714 3714 3515 3515 78 78
6783 6783 6486 6486 78 78
10139 10139 9799 9799 78 78

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