albums_artists
4 rows where artist_id = 6791
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 12432 | 12432 | 12093 12093 | 6791 6791 |
| 16203 | 16203 | 15880 15880 | 6791 6791 |
| 21403 | 21403 | 21281 21281 | 6791 6791 |
| 24194 | 24194 | 24083 24083 | 6791 6791 |
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) );