albums_artists
4 rows where artist_id = 8434
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 17118 | 17118 | 16819 16819 | 8434 8434 |
| 19827 | 19827 | 19632 19632 | 8434 8434 |
| 20267 | 20267 | 20092 20092 | 8434 8434 |
| 23675 | 23675 | 23569 23569 | 8434 8434 |
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) );