home / pf

albums_artists

5 rows where artist_id = 544

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
559 559 536 536 544 544
1679 1679 1583 1583 544 544
2312 2312 2169 2169 544 544
9074 9074 8734 8734 544 544
13674 13674 13323 13323 544 544

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 51.707ms