albums_artists
3 rows where artist_id = 2130
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 2543 | 2543 | 2391 2391 | 2130 2130 |
| 6858 | 6858 | 6559 6559 | 2130 2130 |
| 26534 | 26534 | 26423 26423 | 2130 2130 |
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) );