home / pf

albums_artists

5 rows where artist_id = 2883

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
3772 3772 3572 3572 2883 2883
17242 17242 16939 16939 2883 2883
19277 19277 19058 19058 2883 2883
23120 23120 23019 23019 2883 2883
25551 25551 25452 25452 2883 2883

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