REATE TABLE `products` (
`id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, # 主键, 自增 ID
`name` VARCHAR(50) NOT NULL, # 商品名称
`price_min` DECIMAL(10,2) NOT NULL, # 商品最小价格
`price_max` DECIMAL(10,2) NOT NULL ,# 商品最大价格
`img_url` VARCHAR(255) NOT NULL ,#商品的主图
`category_id` INT(10) NOT NULL ,#商品所属分类id
`mall_id` INT(10) not null ,#商品所属商家id
PRIMARY KEY (`id`)
);