albums_artists
4 rows where artist_id = 9283
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 19409 | 19409 | 19193 19193 | 9283 9283 |
| 21005 | 21005 | 20860 20860 | 9283 9283 |
| 23629 | 23629 | 23525 23525 | 9283 9283 |
| 25136 | 25136 | 25030 25030 | 9283 9283 |
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) );