albums_artists
3 rows where artist_id = 11465
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 26012 | 26012 | 25913 25913 | 11465 11465 |
| 26269 | 26269 | 26167 26167 | 11465 11465 |
| 26272 | 26272 | 26170 26170 | 11465 11465 |
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) );