home / pf

albums_artists

5 rows where artist_id = 316

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
323 323 309 309 316 316
6925 6925 6626 6626 316 316
10137 10137 9797 9797 316 316
10860 10860 10522 10522 316 316
19231 19231 19011 19011 316 316

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