albums_artists
3 rows where artist_id = 758
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 788 | 788 | 748 748 | 758 758 |
| 2683 | 2683 | 2522 2522 | 758 758 |
| 3213 | 3213 | 3031 3031 | 758 758 |
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) );