home / pf

albums_artists

4 rows where artist_id = 3144

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
4246 4246 4045 4045 3144 3144
9524 9524 9179 9179 3144 3144
11100 11100 10762 10762 3144 3144
12552 12552 12212 12212 3144 3144

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