home / pf

albums_artists

5 rows where artist_id = 236

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
242 242 232 232 236 236
900 900 853 853 236 236
1777 1777 1677 1677 236 236
3114 3114 2936 2936 236 236
27636 27636 27443 27443 236 236

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