home / pf

albums_artists

4 rows where artist_id = 1717

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
1952 1952 1838 1838 1717 1717
2924 2924 2754 2754 1717 1717
3260 3260 3077 3077 1717 1717
26886 26886 26744 26744 1717 1717

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