albums_artists
4 rows where artist_id = 2530
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 3166 | 3166 | 2988 2988 | 2530 2530 |
| 5819 | 5819 | 5553 5553 | 2530 2530 |
| 8656 | 8656 | 8321 8321 | 2530 2530 |
| 9348 | 9348 | 8999 8999 | 2530 2530 |
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) );