albums_artists
3 rows where artist_id = 8743
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 17868 | 17868 | 17575 17575 | 8743 8743 |
| 18572 | 18572 | 18317 18317 | 8743 8743 |
| 22022 | 22022 | 21922 21922 | 8743 8743 |
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) );