i have this problem:
i want to fix a master relationship between 2 tables:
CREATE TABLE `orders` (
`OrderID` int(11) NOT NULL auto_increment,
`OrderDate` datetime default NULL,
PRIMARY KEY (`OrderID`)
) ;
CREATE TABLE `orders details` (
`OrderID` int(11) NOT NULL auto_increment,
`OrderDate` datetime default NULL,
`RequiredDate` datetime default NULL,
PRIMARY KEY (`OrderID`)
) ;
i select orders table as a master and the field OrderID
then at details table it doesn´t appear the field OrderID of order details
it happens with a lot of tables, where's the problem
thanks a lot