albums_artists
4 rows where artist_id = 3063
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 4096 | 4096 | 3897 3897 | 3063 3063 |
| 7857 | 7857 | 7541 7541 | 3063 3063 |
| 18688 | 18688 | 18441 18441 | 3063 3063 |
| 26403 | 26403 | 26297 26297 | 3063 3063 |
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) );