albums_artists
3 rows where artist_id = 463
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 474 | 474 | 454 454 | 463 463 |
| 2680 | 2680 | 2520 2520 | 463 463 |
| 27601 | 27601 | 27410 27410 | 463 463 |
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) );