DROP TABLE IF EXISTS `OrderItems`; CREATE TABLE IF NOT EXISTS `OrderItems`( quantity INT(16) NOT NULL COMMENT '商品数量' ); INSERT `OrderItems` VALUES (10),(100),(1000),(10001),(2),(15);
items_ordered 11128.000