home / pf

albums_artists

5 rows where artist_id = 2493

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
3112 3112 2934 2934 2493 2493
9375 9375 9027 9027 2493 2493
11379 11379 11040 11040 2493 2493
14120 14120 13765 13765 2493 2493
15604 15604 15266 15266 2493 2493

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