albums_artists
4 rows where artist_id = 2866
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 3743 | 3743 | 3544 3544 | 2866 2866 |
| 5662 | 5662 | 5399 5399 | 2866 2866 |
| 8218 | 8218 | 7898 7898 | 2866 2866 |
| 8220 | 8220 | 7899 7899 | 2866 2866 |
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) );