albums_artists
4 rows where artist_id = 19
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 24 | 24 | 24 24 | 19 19 |
| 5824 | 5824 | 5558 5558 | 19 19 |
| 6381 | 6381 | 6092 6092 | 19 19 |
| 26992 | 26992 | 26845 26845 | 19 19 |
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) );