albums_artists
3 rows where artist_id = 4224
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 6519 | 6519 | 6228 6228 | 4224 4224 |
| 9817 | 9817 | 9471 9471 | 4224 4224 |
| 12193 | 12193 | 11856 11856 | 4224 4224 |
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) );