albums_artists
3 rows where artist_id = 2744
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 3523 | 3523 | 3326 3326 | 2744 2744 |
| 4314 | 4314 | 4110 4110 | 2744 2744 |
| 8039 | 8039 | 7727 7727 | 2744 2744 |
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) );