albums_artists
3 rows where artist_id = 10581
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 23380 | 23380 | 23278 23278 | 10581 10581 |
| 23742 | 23742 | 23632 23632 | 10581 10581 |
| 24778 | 24778 | 24662 24662 | 10581 10581 |
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) );