/* MySQL Data Transfer Source Host: localhost Source Database: aceshop Target Host: localhost Target Database: aceshop Date: 2013-9-28 18:14:10 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for t_goods -- ---------------------------- CREATE TABLE `t_goods` ( `g_ID` int(11) NOT NULL AUTO_INCREMENT, `g_Name` varchar(50) NOT NULL, `g_Spic` varchar(255) NOT NULL, `g_apply` varchar(255) NOT NULL, `t_ID` int(11) NOT NULL, `g_Price` double(11,0) NOT NULL, `g_Number` int(11) NOT NULL, `g_Discount` float NOT NULL, `g_state` varchar(255) NOT NULL, PRIMARY KEY (`g_ID`), KEY `t_ID` (`t_ID`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=gbk; -- ---------------------------- -- Records -- ---------------------------- INSERT INTO `t_goods` VALUES ('1', 'Inspiron 14 ', '3421S1.jpg', 'enjoy', '1', '2999', '100', '1', '是'); INSERT INTO `t_goods` VALUES ('2', 'Inspiron 15 ', '3316S1.jpg', 'top', '1', '3999', '100', '1', ''); INSERT INTO `t_goods` VALUES ('3', 'Inspiron 11 ', '3000S1.jpg', 'daily', '1', '3999', '100', '1', '是'); INSERT INTO `t_goods` VALUES ('4', 'XPS12', 'XPS12S1.jpg', 'top', '1', '5999', '100', '1', ''); INSERT INTO `t_goods` VALUES ('5', 'XPS13', 'XPS13S1.jpg', 'enjoy', '1', '7999', '100', '1', '是'); INSERT INTO `t_goods` VALUES ('6', 'XPS14', 'XPS14S1.jpg', 'daily', '1', '4098', '100', '1', ''); INSERT INTO `t_goods` VALUES ('7', 'Alienware 18 ', 'ALW18D-1788S1.jpg', 'top', '1', '8999', '100', '1', ''); INSERT INTO `t_goods` VALUES ('8', 'Alienware 14 ', 'ALW14D-1728S1.jpg', 'enjoy', '1', '9999', '100', '1', '是'); INSERT INTO `t_goods` VALUES ('9', 'Alienware M17x ', 'ALW17D-3728S1.jpg', 'daily', '1', '7889', '100', '1', '');