home / pf

albums_artists

5 rows where artist_id = 3698

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
5341 5341 5091 5091 3698 3698
6636 6636 6346 6346 3698 3698
11247 11247 10910 10910 3698 3698
14964 14964 14614 14614 3698 3698
19039 19039 18811 18811 3698 3698

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