albums_artists
4 rows where artist_id = 6619
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 12044 | 12044 | 11703 11703 | 6619 6619 |
| 15779 | 15779 | 15441 15441 | 6619 6619 |
| 15780 | 15780 | 15442 15442 | 6619 6619 |
| 25063 | 25063 | 24958 24958 | 6619 6619 |
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) );