albums_artists
4 rows where artist_id = 201
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 206 | 206 | 199 199 | 201 201 |
| 1011 | 1011 | 955 955 | 201 201 |
| 7721 | 7721 | 7414 7414 | 201 201 |
| 26464 | 26464 | 26354 26354 | 201 201 |
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) );