简体   繁体   中英

errno 150 in MySQL can't create table

getting this error but cannot see the forest for the trees.

my product table:

CREATE TABLE IF NOT EXISTS `tblProducts` (
  `productID` int(11) NOT NULL AUTO_INCREMENT,
  `partNo` int(11) NOT NULL,
  `productName` varchar(50) NOT NULL,
  `description` mediumtext,
  `unitPrice` decimal(10,2) NOT NULL DEFAULT '0.00',
  `supplierPrice` decimal(10,2) DEFAULT '0.00',
  `marginDiscount` double(8,0) NOT NULL DEFAULT '0',
  `supplierID_FK` int(11) NOT NULL,
  `categoryID_FK` int(11) NOT NULL,
  `quantityPerUnit` varchar(20) NOT NULL DEFAULT '1',
  `unitsInStock` smallint(2) DEFAULT '0',
  `unitsOnOrder` smallint(2) DEFAULT '0',
  `reorderLevel` smallint(2) DEFAULT '0',
  `discontinued` bit(1) NOT NULL DEFAULT b'0',
  PRIMARY KEY (`productID`),
  KEY `ix_partNo` (`partNo`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

and here is the table I'm unable to create:

CREATE TABLE IF NOT EXISTS `tblProductAudit` (
  `productAuditID` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `partNo` int(11) unsigned NOT NULL,
  `changeType` enum('NEW','EDIT','DELETE') NOT NULL,
  `changeTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`productAuditID`),
  KEY `ix_part_id` (`partNo`),
  KEY `ix_changeType` (`changeType`),
  KEY `ix_changeTime` (`changeTime`),
CONSTRAINT `FK_audit_partNo_id` FOREIGN KEY (`partNo`) REFERENCES `tblProducts` (`productID`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

tblProducts.ProductID field is a signed integer field, while the referencing PartNo field is unsigned. This is a type mismatch. I would also encourage you to use the same charset in both tables to avoid confusion.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM