albums_artists
4 rows where artist_id = 23
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 28 | 28 | 28 28 | 23 23 |
| 2805 | 2805 | 2640 2640 | 23 23 |
| 4001 | 4001 | 3798 3798 | 23 23 |
| 26609 | 26609 | 26494 26494 | 23 23 |
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) );