home / pf

albums_artists

4 rows where artist_id = 1231

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
1337 1337 1258 1258 1231 1231
4102 4102 3903 3903 1231 1231
9882 9882 9535 9535 1231 1231
26871 26871 26730 26730 1231 1231

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