albums_artists
3 rows where artist_id = 7321
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 14000 | 14000 | 13645 13645 | 7321 7321 |
| 19384 | 19384 | 19169 19169 | 7321 7321 |
| 20494 | 20494 | 20330 20330 | 7321 7321 |
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) );