home / pf

albums_artists

4 rows where album_id = 23546

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
23650 23650 23546 23546 1539 1539
23651 23651 23546 23546 10672 10672
23652 23652 23546 23546 2662 2662
23653 23653 23546 23546 10673 10673

Advanced export

JSON shape: default, array, newline-delimited

CSV options:

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)
);
Powered by Datasette · Queries took 110.922ms