home / pf

albums_genres

0 rows where album_id = 12528

✎ View and edit SQL

This data as json

0 records

CREATE TABLE albums_genres (
	album_id integer NOT NULL,
	genre_id integer NOT NULL,
	FOREIGN KEY(album_id) REFERENCES albums(id),
	FOREIGN KEY(genre_id) REFERENCES genres(id),
	UNIQUE(album_id,genre_id)
);
Powered by Datasette · Queries took 12.765ms