albums_artists
4 rows where artist_id = 3
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 3 | 3 | 4 4 | 3 3 |
| 4 | 4 | 5 5 | 3 3 |
| 1825 | 1825 | 1724 1724 | 3 3 |
| 4416 | 4416 | 4203 4203 | 3 3 |
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) );