home / pf

albums_artists

4 rows where artist_id = 4081

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
6141 6141 5862 5862 4081 4081
10253 10253 9914 9914 4081 4081
10563 10563 10226 10226 4081 4081
26922 26922 26778 26778 4081 4081

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