System: |
|
Fields
idCountry |
integer |
|
|
|
|
|
|
|
idMovie |
integer |
|
|
|
|
|
|
|
Indexes
Foreign keys
There are no foreign keys for table "countrylinkmovie"
Checks
There are no checks for table "countrylinkmovie"
Triggers
There are no triggers for table "countrylinkmovie"
References
There are no references for table "countrylinkmovie"
Definition:
CREATE TABLE countrylinkmovie (
idCountry integer,
idMovie integer
);
CREATE UNIQUE INDEX ix_countrylinkmovie_1
ON countrylinkmovie
(idCountry, idMovie);
CREATE UNIQUE INDEX ix_countrylinkmovie_2
ON countrylinkmovie
(idMovie, idCountry);