home / pf

albums_artists

5 rows where artist_id = 7612

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
14785 14785 14431 14431 7612 7612
16248 16248 15926 15926 7612 7612
17192 17192 16888 16888 7612 7612
20308 20308 20138 20138 7612 7612
22772 22772 22682 22682 7612 7612

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