home / pf

albums_artists

6 rows where artist_id = 4194

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
6445 6445 6153 6153 4194 4194
6446 6446 6154 6154 4194 4194
13904 13904 13545 13545 4194 4194
15587 15587 15248 15248 4194 4194
16730 16730 16421 16421 4194 4194
18732 18732 18488 18488 4194 4194

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