home / pf

albums_artists

5 rows where artist_id = 6002

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
10623 10623 10289 10289 6002 6002
14892 14892 14544 14544 6002 6002
15306 15306 14962 14962 6002 6002
19375 19375 19160 19160 6002 6002
19957 19957 19769 19769 6002 6002

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