albums_artists
3 rows where artist_id = 9833
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 21045 | 21045 | 20904 20904 | 9833 9833 |
| 22668 | 22668 | 22574 22574 | 9833 9833 |
| 24173 | 24173 | 24064 24064 | 9833 9833 |
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) );