オンライン在庫システムを開発しようとしています。次の表があります。
CREATE TABLE `product` (
`ProductId`
`SubCategoryTypeId`
`MerchantId`
`ProductName`
`MRP`
`Quantity`
`ProductCode`
`ProductSKUCode`
`BarCode`
`Description_short`
`Description_long`
`ThumbnailImage`
`ProductImage`
`OurPrice`
`MinBargainPrice`
`Brand`
`AirCost`
`SurfaceCost`
`ShippingAirTime`
`ShippingSurfaceTime`
`ColorCode`
`DiscountPercent`
`IsApproved`
`IsActive`
`HasSize`
`isOnlineProduct`
`isOfflineProduct`
`ShippingCategory`
`ProductExpiryDays`
`RelatedVideo`
`TechnicalSpecification`
`CreatedDateTime`
`ModifiedDateTime`
`CreatedBy`
`ModifiedBy`
`IsCod`
`HasOffer`
`OfferText`
`IsNewArrival`
`HasColor`
`NoOfRecommendation`
`IsPremium` tinyint(1)
`IsImported`
PRIMARY KEY (`ProductId`),
KEY `Product_Category_Rel` (`SubCategoryTypeId`),
KEY `Product_Merchant_Rel` (`MerchantId`)
) ENGINE=InnoDB AUTO_INCREMENT=2093 DEFAULT CHARSET=utf8 COMMENT='This table contains Product data.';
このテーブルを使用して、ほとんどの製品を追加できますが、本も追加できるようにこのテーブルを最適化する方法を教えてください。著者、出版社などがあるため、本の追加に問題があります。本を追加できるようにするために何をすべきか誰か提案できますか?