我正在建立一個電影網站... 我需要顯示有關每部電影的信息,包括類型,演員和大量信息(類似於IMDB.com)。
I created a movies table including an ID and some basic information. For the genres I created a genres table including 2 columns: ID and genre. Then I use a genres2movies table with two columns:movieID and the genreID, to connect between the genres and the movies tables...
例如,如果一部电影有5种不同的流派,我会在genres2movies表中的5个不同的行中得到该电影的movieID。这比每次为每部电影都包含流派更好,但是...
有更好的方法来做这件事吗?
我也需要为演员、语言和国家做这件事,所以表现和数据库大小真的很重要。
谢谢!!!