albums_artists
3 rows where artist_id = 4213
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 6493 | 6493 | 6201 6201 | 4213 4213 |
| 7869 | 7869 | 7554 7554 | 4213 4213 |
| 9015 | 9015 | 8675 8675 | 4213 4213 |
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) );