albums_artists
4 rows where artist_id = 8845
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 18150 | 18150 | 17866 17866 | 8845 8845 |
| 20316 | 20316 | 20146 20146 | 8845 8845 |
| 23608 | 23608 | 23505 23505 | 8845 8845 |
| 25225 | 25225 | 25119 25119 | 8845 8845 |
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) );