home / pf

albums_artists

6 rows where artist_id = 1431

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
1581 1581 1492 1492 1431 1431
9887 9887 9540 9540 1431 1431
11837 11837 11496 11496 1431 1431
13063 13063 12726 12726 1431 1431
14565 14565 14211 14211 1431 1431
15839 15839 15496 15496 1431 1431

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