home / pf

albums_artists

4 rows where artist_id = 4729

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
7642 7642 7336 7336 4729 4729
8635 8635 8300 8300 4729 4729
10539 10539 10200 10200 4729 4729
11383 11383 11044 11044 4729 4729

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