albums_artists
3 rows where artist_id = 1229
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 1335 | 1335 | 1256 1256 | 1229 1229 |
| 2688 | 2688 | 2527 2527 | 1229 1229 |
| 3692 | 3692 | 3493 3493 | 1229 1229 |
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) );