home / pf

albums_artists

6 rows where artist_id = 2548

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
3189 3189 3009 3009 2548 2548
12414 12414 12077 12077 2548 2548
14766 14766 14412 14412 2548 2548
17113 17113 16814 16814 2548 2548
19672 19672 19472 19472 2548 2548
22199 22199 22106 22106 2548 2548

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