albums_artists
3 rows where artist_id = 658
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 680 | 680 | 651 651 | 658 658 |
| 2533 | 2533 | 2381 2381 | 658 658 |
| 4502 | 4502 | 4285 4285 | 658 658 |
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) );