albums_artists
3 rows where artist_id = 8509
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 17295 | 17295 | 16992 16992 | 8509 8509 |
| 17296 | 17296 | 16993 16993 | 8509 8509 |
| 18091 | 18091 | 17806 17806 | 8509 8509 |
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) );