Inventory
The inventory
database contains the following tables:
The film table
The film
table contains a list of all films (logical information), not necessarily in stock. The stock information (physical copy) is in the table inventory described as follows:
Column |
Description |
---|---|
|
A primary key used to uniquely identify each film in the table. |
|
The title of the film. |
|
A short description or plot summary of the film. |
|
The year the film was released. |
|
A foreign key pointing at the language table; it is used to identify the language of the film. |
|
A foreign key pointing at the language table; it is used to identify the original language of the film. It is only used when a film has been dubbed into a new language. |
|
The number of rental days. |
|
The cost to rent the film for the period specified in the |
|
The length of the film in minutes... |