home / pf

albums_artists

5 rows where artist_id = 259

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
266 266 254 254 259 259
1223 1223 1152 1152 259 259
3363 3363 3173 3173 259 259
4912 4912 4682 4682 259 259
6091 6091 5814 5814 259 259

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