home / pf

albums_artists

5 rows where artist_id = 3430

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
4743 4743 4527 4527 3430 3430
4744 4744 4528 4528 3430 3430
4745 4745 4529 4529 3430 3430
4746 4746 4530 4530 3430 3430
4748 4748 4532 4532 3430 3430

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