home / pf

albums_artists

6 rows where artist_id = 7756

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
15233 15233 14888 14888 7756 7756
22777 22777 22687 22687 7756 7756
23462 23462 23356 23356 7756 7756
23607 23607 23504 23504 7756 7756
24962 24962 24854 24854 7756 7756
25789 25789 25690 25690 7756 7756

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