home / pf

albums_artists

4 rows where artist_id = 214

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
219 219 211 211 214 214
1890 1890 1783 1783 214 214
4792 4792 4574 4574 214 214
6512 6512 6221 6221 214 214

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