home / pf

albums_artists

7 rows where artist_id = 2139

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
2554 2554 2402 2402 2139 2139
2555 2555 2403 2403 2139 2139
2556 2556 2404 2404 2139 2139
2557 2557 2405 2405 2139 2139
2558 2558 2406 2406 2139 2139
2559 2559 2407 2407 2139 2139
2560 2560 2408 2408 2139 2139

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