You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.3 KiB
35 lines
1.3 KiB
/*
|
|
MySQL Data Transfer
|
|
Source Host: localhost
|
|
Source Database: aceshop
|
|
Target Host: localhost
|
|
Target Database: aceshop
|
|
Date: 2013-9-28 18:14:17
|
|
*/
|
|
|
|
SET FOREIGN_KEY_CHECKS=0;
|
|
-- ----------------------------
|
|
-- Table structure for t_orderdetails
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `t_orderdetails`;
|
|
CREATE TABLE `t_orderdetails` (
|
|
`ID` int(11) NOT NULL AUTO_INCREMENT,
|
|
`o_ID` varchar(30) NOT NULL,
|
|
`g_ID` int(11) NOT NULL,
|
|
`g_Name` varchar(300) NOT NULL,
|
|
`g_Price` double NOT NULL,
|
|
`g_Spic` varchar(255)DEFAULT '0000.PNG',
|
|
`o_Count` int(11) NOT NULL,
|
|
`o_Status` int(11) NOT NULL DEFAULT '0',
|
|
`o_Flag` varchar(50) DEFAULT '000',
|
|
PRIMARY KEY (`ID`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=gbk;
|
|
|
|
-- ----------------------------
|
|
-- Records
|
|
-- ----------------------------
|
|
INSERT INTO `t_orderdetails` VALUES ('30', '0001', '1', '金盏花植物爽肤水', '330', 'facewater1.PNG','1', '0','facewater');
|
|
INSERT INTO `t_orderdetails` VALUES ('31', '0002', '2', '高保湿清爽洁面乳', '180', 'faceclear1.PNG','1', '0','faceclear');
|
|
INSERT INTO `t_orderdetails` VALUES ('32', '0003', '3', '科颜氏高保湿面膜', '340','facemo1.PNG', '1', '0','facemo');
|
|
INSERT INTO `t_orderdetails` VALUES ('33', '0004', '4', '男士清爽防晒乳SPF30+ PA+++','350', 'sunface1.PNG', '1', '0','sunface');
|
|
|