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.
test1/blog.sql

40 lines
1.3 KiB

/*
Navicat MySQL Data Transfer
Source Server : he
Source Server Version : 50636
Source Host : localhost:3306
Source Database : hlb
Target Server Type : MYSQL
Target Server Version : 50636
File Encoding : 65001
Date: 2024-06-28 13:13:29
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for blog
-- ----------------------------
DROP TABLE IF EXISTS `blog`;
CREATE TABLE `blog` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`actionTime` date NOT NULL,
`address` varchar(100) NOT NULL,
`peoples` varchar(100) NOT NULL,
`event` varchar(100) NOT NULL,
`title` varchar(20) NOT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of blog
-- ----------------------------
INSERT INTO `blog` VALUES ('2', '2015-06-12', '成都', '衣服', '入库成功', '成功');
INSERT INTO `blog` VALUES ('3', '2011-02-09', '成都', '大床', '入库成功', '成功');
INSERT INTO `blog` VALUES ('4', '2012-03-15', '成都', '名包', '入库失败', '失败');
INSERT INTO `blog` VALUES ('5', '2014-03-10', '简阳', '鞋子', '入库失败', '失败');
INSERT INTO `blog` VALUES ('6', '2024-01-03', 'asd', 'dsa', '入库失败', '失败');