albums_artists
3 rows where artist_id = 301
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 308 | 308 | 295 295 | 301 301 |
| 5775 | 5775 | 5508 5508 | 301 301 |
| 7765 | 7765 | 7458 7458 | 301 301 |
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) );