home / pf

albums_artists

4 rows where artist_id = 141

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
146 146 141 141 141 141
2034 2034 1912 1912 141 141
4389 4389 4178 4178 141 141
7037 7037 6737 6737 141 141

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