home / pf

albums_artists

4 rows where artist_id = 1330

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
1451 1451 1367 1367 1330 1330
5347 5347 5097 5097 1330 1330
9373 9373 9025 9025 1330 1330
26808 26808 26672 26672 1330 1330

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.933ms