home / pf

albums_artists

5 rows where album_id = 22744

✎ View and edit SQL

This data as json, CSV (advanced)

Link rowid ▼ album_id artist_id
22835 22835 22744 22744 7124 7124
22836 22836 22744 22744 10397 10397
22837 22837 22744 22744 10398 10398
22838 22838 22744 22744 10399 10399
22839 22839 22744 22744 636 636

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