home / pf

albums_artists

6 rows where artist_id = 3472

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
4847 4847 4625 4625 3472 3472
10832 10832 10495 10495 3472 3472
11773 11773 11433 11433 3472 3472
12923 12923 12581 12581 3472 3472
13866 13866 13508 13508 3472 3472
16667 16667 16357 16357 3472 3472

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