albums_artists
3 rows where artist_id = 3358
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 4611 | 4611 | 4393 4393 | 3358 3358 |
| 15813 | 15813 | 15471 15471 | 3358 3358 |
| 16858 | 16858 | 16549 16549 | 3358 3358 |
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) );