albums_artists
3 rows where artist_id = 8004
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 15973 | 15973 | 15634 15634 | 8004 8004 |
| 18861 | 18861 | 18618 18618 | 8004 8004 |
| 18862 | 18862 | 18619 18619 | 8004 8004 |
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) );