albums_artists
3 rows where artist_id = 3881
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 5708 | 5708 | 5445 5445 | 3881 3881 |
| 8575 | 8575 | 8243 8243 | 3881 3881 |
| 9595 | 9595 | 9249 9249 | 3881 3881 |
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) );