albums_artists
3 rows where artist_id = 11602
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 26627 | 26627 | 26510 26510 | 11602 11602 |
| 26628 | 26628 | 26511 26511 | 11602 11602 |
| 26629 | 26629 | 26512 26512 | 11602 11602 |
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) );