home / pf

albums_artists

5 rows where artist_id = 3884

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
5715 5715 5452 5452 3884 3884
17489 17489 17195 17195 3884 3884
22428 22428 22333 22333 3884 3884
23436 23436 23332 23332 3884 3884
24693 24693 24571 24571 3884 3884

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