albums_artists
4 rows where artist_id = 5266
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 8939 | 8939 | 8602 8602 | 5266 5266 |
| 13664 | 13664 | 13313 13313 | 5266 5266 |
| 14245 | 14245 | 13885 13885 | 5266 5266 |
| 16563 | 16563 | 16251 16251 | 5266 5266 |
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) );