albums_artists
3 rows where artist_id = 3464
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 4819 | 4819 | 4600 4600 | 3464 3464 |
| 9575 | 9575 | 9229 9229 | 3464 3464 |
| 15972 | 15972 | 15633 15633 | 3464 3464 |
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) );