albums_artists
4 rows where artist_id = 363
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 371 | 371 | 353 353 | 363 363 |
| 3856 | 3856 | 3652 3652 | 363 363 |
| 5915 | 5915 | 5646 5646 | 363 363 |
| 9371 | 9371 | 9023 9023 | 363 363 |
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) );