J'ai la structure de base de données suivante
CREATE TABLE `productinfo` (
`ProductID` int(11) NOT NULL AUTO_INCREMENT,
`ProductName` varchar(255) NOT NULL,
`ProductImage` varchar(255) NOT NULL,
`CategoryID` int(11) NOT NULL,
`SubCategoryID` int(11) NOT NULL,
`ProductBrief` varchar(255) NOT NULL,
`Features` text NOT NULL,
`Specifications` text NOT NULL,
`Reviews` text NOT NULL,
`Price` varchar(255) NOT NULL,
`Status` tinyint(4) NOT NULL,
PRIMARY KEY (`ProductID`)
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=latin1;
Je dois maintenant transformer ProductID, CategoryID et SubCategoryID en une chaîne de caractères comme Ps-5678 pour le numéro de pièce. ProductID est la clé primaire, alors comment puis-je changer la structure de la base de données. CategoryID et SubCategoryID sont des clés primaires dans d'autres tables, alors comment puis-je gérer cela ?
`ProductID` int(11) NOT NULL AUTO_INCREMENT
dans une chaîne et se débarrasser de
PRIMARY KEY (`ProductID`)
idées, suggestions, tout le monde