DROP TABLE IF EXISTS `SalesGoods`; CREATE TABLE `SalesGoods` ( BusinessID int(11) NOT NULL, GoodsID int(11) DEFAULT NULL, Price int(11) DEFAULT NULL, Discount int(11) DEFAULT NULL, Suu int(11) DEFAULT NULL, Name varchar(20) DEFAULT NULL, SalesTime datetime DEFAULT NULL,) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;