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.
31 lines
1017 B
31 lines
1017 B
/*
|
|
MySQL Data Transfer
|
|
Source Host: localhost
|
|
Source Database: aceshop
|
|
Target Host: localhost
|
|
Target Database: aceshop
|
|
Date: 2013-9-28 18:14:07
|
|
*/
|
|
|
|
SET FOREIGN_KEY_CHECKS=0;
|
|
-- ----------------------------
|
|
-- Table structure for t_contact
|
|
-- --------------------------
|
|
DROP TABLE IF EXISTS `t_contact`;
|
|
CREATE TABLE `t_contact` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`name` varchar(30) NOT NULL,
|
|
`email` varchar(60) NOT NULL,
|
|
`phone` varchar(30) NOT NULL,
|
|
`ctext` varchar(500) DEFAULT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=gbk;
|
|
|
|
-- ----------------------------
|
|
-- Records
|
|
-- ----------------------------
|
|
INSERT INTO `t_contact` VALUES ('1', 'lgfdjlk', 'fsfas', 'fasdfa', 'fadfadsf');
|
|
INSERT INTO `t_contact` VALUES ('2', '刘宝忠', '5335@qq.com', '123456789', '很好很好');
|
|
INSERT INTO `t_contact` VALUES ('3', '黄为', '5645444@qq.com', '1234567989', '不错不错很不错');
|
|
INSERT INTO `t_contact` VALUES ('4', 'hsp', '123@qq.com', '123456789', 'asfasfa');
|