home / pf

albums_artists

5 rows where artist_id = 3053

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
4073 4073 3873 3873 3053 3053
12062 12062 11721 11721 3053 3053
20597 20597 20431 20431 3053 3053
23682 23682 23576 23576 3053 3053
25385 25385 25289 25289 3053 3053

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