home / pf

albums_artists

4 rows where artist_id = 2915

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
3837 3837 3636 3636 2915 2915
8271 8271 7952 7952 2915 2915
10456 10456 10114 10114 2915 2915
11727 11727 11385 11385 2915 2915

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