albums_artists
3 rows where artist_id = 2802
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 3633 | 3633 | 3437 3437 | 2802 2802 |
| 4249 | 4249 | 4048 4048 | 2802 2802 |
| 6978 | 6978 | 6679 6679 | 2802 2802 |
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) );