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.
28 lines
941 B
28 lines
941 B
|
|
|
|
SET NAMES utf8mb4;
|
|
SET FOREIGN_KEY_CHECKS = 0;
|
|
|
|
|
|
-- ----------------------------
|
|
-- Table structure for demo
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `demo`;
|
|
CREATE TABLE `demo` (
|
|
`did` int(11) NOT NULL AUTO_INCREMENT,
|
|
`dname` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
|
|
`comment` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
|
|
PRIMARY KEY (`did`) USING BTREE
|
|
) ENGINE = InnoDB AUTO_INCREMENT = 27 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact;
|
|
|
|
-- ----------------------------
|
|
-- Records of demo
|
|
-- ----------------------------
|
|
INSERT INTO `demo` VALUES (20, '1', '1111');
|
|
INSERT INTO `demo` VALUES (21, '2', '222');
|
|
INSERT INTO `demo` VALUES (22, '3', '333');
|
|
INSERT INTO `demo` VALUES (23, '4', '444');
|
|
INSERT INTO `demo` VALUES (24, '5', '555');
|
|
INSERT INTO `demo` VALUES (25, '6', '666');
|
|
INSERT INTO `demo` VALUES (26, '7', '777');
|