albums_artists
4 rows where artist_id = 3078
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 4119 | 4119 | 3919 3919 | 3078 3078 |
| 7015 | 7015 | 6716 6716 | 3078 3078 |
| 8838 | 8838 | 8507 8507 | 3078 3078 |
| 10755 | 10755 | 10421 10421 | 3078 3078 |
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) );