home / pf

albums_artists

4 rows where artist_id = 3121

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
4200 4200 3998 3998 3121 3121
11819 11819 11478 11478 3121 3121
16266 16266 15949 15949 3121 3121
21048 21048 20907 20907 3121 3121

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