albums_artists
3 rows where artist_id = 6629
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 12064 | 12064 | 11723 11723 | 6629 6629 |
| 15236 | 15236 | 14891 14891 | 6629 6629 |
| 15572 | 15572 | 15231 15231 | 6629 6629 |
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) );