albums_artists
4 rows where artist_id = 227
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 233 | 233 | 223 223 | 227 227 |
| 2346 | 2346 | 2200 2200 | 227 227 |
| 5486 | 5486 | 5230 5230 | 227 227 |
| 27523 | 27523 | 27338 27338 | 227 227 |
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) );