home / pf

albums_artists

4 rows where artist_id = 9280

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
19396 19396 19180 19180 9280 9280
23287 23287 23184 23184 9280 9280
25449 25449 25349 25349 9280 9280
26186 26186 26084 26084 9280 9280

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