albums_artists
4 rows where artist_id = 3045
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 4058 | 4058 | 3859 3859 | 3045 3045 |
| 7233 | 7233 | 6936 6936 | 3045 3045 |
| 8386 | 8386 | 8061 8061 | 3045 3045 |
| 15404 | 15404 | 15061 15061 | 3045 3045 |
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) );