home / pf

albums_artists

5 rows where artist_id = 4432

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
6943 6943 6645 6645 4432 4432
10080 10080 9736 9736 4432 4432
22561 22561 22467 22467 4432 4432
25523 25523 25423 25423 4432 4432
26341 26341 26235 26235 4432 4432

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