home / pf

albums_artists

5 rows where artist_id = 357

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
365 365 347 347 357 357
7073 7073 6775 6775 357 357
7074 7074 6776 6776 357 357
22885 22885 22791 22791 357 357
22886 22886 22792 22792 357 357

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