home / pf

albums_artists

6 rows where artist_id = 1363

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
1491 1491 1407 1407 1363 1363
10411 10411 10070 10070 1363 1363
11668 11668 11331 11331 1363 1363
15019 15019 14672 14672 1363 1363
17825 17825 17534 17534 1363 1363
23526 23526 23421 23421 1363 1363

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