albums_artists
5 rows where artist_id = 8044
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 16054 | 16054 | 15724 15724 | 8044 8044 |
| 21868 | 21868 | 21764 21764 | 8044 8044 |
| 23417 | 23417 | 23313 23313 | 8044 8044 |
| 23781 | 23781 | 23672 23672 | 8044 8044 |
| 24098 | 24098 | 23988 23988 | 8044 8044 |
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) );