albums_artists
4 rows where artist_id = 304
This data as json, CSV (advanced)
| Link | rowid ▼ | album_id | artist_id |
|---|---|---|---|
| 311 | 311 | 298 298 | 304 304 |
| 5277 | 5277 | 5030 5030 | 304 304 |
| 8598 | 8598 | 8264 8264 | 304 304 |
| 13280 | 13280 | 12935 12935 | 304 304 |
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) );