albums_artists
3 rows where artist_id = 9819
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 20998 | 20998 | 20853 20853 | 9819 9819 |
| 23115 | 23115 | 23014 23014 | 9819 9819 |
| 23902 | 23902 | 23788 23788 | 9819 9819 |
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) );