albums_artists
3 rows where artist_id = 574
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 593 | 593 | 569 569 | 574 574 |
| 5447 | 5447 | 5191 5191 | 574 574 |
| 7500 | 7500 | 7194 7194 | 574 574 |
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) );