albums_artists
7 rows where artist_id = 256
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 263 | 263 | 251 251 | 256 256 |
| 7411 | 7411 | 7111 7111 | 256 256 |
| 12469 | 12469 | 12132 12132 | 256 256 |
| 15589 | 15589 | 15250 15250 | 256 256 |
| 16961 | 16961 | 16653 16653 | 256 256 |
| 17924 | 17924 | 17631 17631 | 256 256 |
| 19293 | 19293 | 19075 19075 | 256 256 |
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) );