albums_artists
4 rows where artist_id = 110
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 115 | 115 | 112 112 | 110 110 |
| 2579 | 2579 | 2427 2427 | 110 110 |
| 27378 | 27378 | 27206 27206 | 110 110 |
| 27379 | 27379 | 27207 27207 | 110 110 |
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) );