albums_artists
4 rows where artist_id = 192
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 197 | 197 | 190 190 | 192 192 |
| 7747 | 7747 | 7440 7440 | 192 192 |
| 11155 | 11155 | 10817 10817 | 192 192 |
| 19052 | 19052 | 18824 18824 | 192 192 |
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) );