问答详情
源自:5-4 项目结构和JPA演示

表数据能提供下吗大佬

表数据能提供下吗大佬

提问者:大大大大航 2021-12-26 18:29

个回答

  • 逆流的鱼_飞
    2022-01-28 15:14:53

    DROP TABLE IF EXISTS `t_blog`;

    CREATE TABLE `t_blog` (

      `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增id',

      `title` varchar(60) DEFAULT NULL COMMENT '博客标题',

      `author` varchar(60) DEFAULT NULL COMMENT '博客作者',

      `content` mediumtext COMMENT '博客内容',

      `create_time` datetime DEFAULT NULL COMMENT '创建时间',

      `update_time` datetime DEFAULT NULL COMMENT '更新时间',

      PRIMARY KEY (`id`)

    ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4;


    -- ----------------------------

    -- Records of t_blog

    -- ----------------------------

    INSERT INTO `t_blog` VALUES ('1', 'Springboot 为什么这', 'bywind', '没错 Springboot ', '2019-12-08 01:44:29', '2019-12-08 01:44:34');

    INSERT INTO `t_blog` VALUES ('3', 'Springboot 中 Redis', 'bywind', 'Spring Boot', '2019-12-08 01:44:29', '2019-12-08 01:44:29');

    INSERT INTO `t_blog` VALUES ('4', 'Springboot 中如何优化', 'bywind', '优化大数据', '2019-12-08 01:44:29', '2019-12-08 01:44:29');

    INSERT INTO `t_blog` VALUES ('5', 'Springboot 消息队列', 'bywind', '消息队列', '2019-12-08 01:44:29', '2019-12-08 01:44:29');

    INSERT INTO `t_blog` VALUES ('6', 'Docker Compose + Springboot', 'bywind', 'docker容器', '2019-12-08 01:44:29', '2019-12-08 01:44:29');

    INSERT INTO `t_blog` VALUES ('7', 'Springboot整合ElasticSearch', 'fengzf', 'Springboot + ElasticSearch 构建博客检索系统', '2022-01-20 10:37:07', '2022-01-20 10:37:10');