home / pf

albums_artists

5 rows where artist_id = 2321

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
2828 2828 2662 2662 2321 2321
7305 7305 7009 7009 2321 2321
13181 13181 12841 12841 2321 2321
15667 15667 15329 15329 2321 2321
16935 16935 16627 16627 2321 2321

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