albums_artists
4 rows where artist_id = 8047
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 16060 | 16060 | 15732 15732 | 8047 8047 |
| 17473 | 17473 | 17179 17179 | 8047 8047 |
| 19839 | 19839 | 19645 19645 | 8047 8047 |
| 21808 | 21808 | 21702 21702 | 8047 8047 |
Advanced export
JSON shape: default, array, newline-delimited
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) );