home / pf

albums_artists

5 rows where artist_id = 2259

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
2736 2736 2573 2573 2259 2259
6874 6874 6575 6575 2259 2259
15321 15321 14980 14980 2259 2259
17599 17599 17304 17304 2259 2259
19452 19452 19235 19235 2259 2259

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