albums_artists
3 rows where artist_id = 5508
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 9490 | 9490 | 9143 9143 | 5508 5508 |
| 11789 | 11789 | 11448 11448 | 5508 5508 |
| 13311 | 13311 | 12964 12964 | 5508 5508 |
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) );