home / pf

albums_artists

5 rows where artist_id = 281

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
288 288 275 275 281 281
1092 1092 1035 1035 281 281
3125 3125 2947 2947 281 281
4134 4134 3933 3933 281 281
6406 6406 6114 6114 281 281

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