home / pf

albums_artists

5 rows where artist_id = 4673

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
7492 7492 7187 7187 4673 4673
19595 19595 19385 19385 4673 4673
24203 24203 24092 24092 4673 4673
25787 25787 25688 25688 4673 4673
26287 26287 26184 26184 4673 4673

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