All Downloads are FREE. Search and download functionalities are using the official Maven repository.

lex.mybatis-flex-spring-boot-test.1.10.2.source-code.unmapped_user.sql Maven / Gradle / Ivy

There is a newer version: 1.10.3
Show newest version
-- ----------------------------
-- Table structure for tb_unmapped_user
-- ----------------------------
DROP TABLE IF EXISTS `tb_unmapped_user`;
CREATE TABLE `tb_unmapped_user`
(
    `id`        bigint primary key AUTO_INCREMENT,
    `name`      varchar(100)  NULL DEFAULT NULL,
    `age`       int NULL DEFAULT NULL,
    `code`      int NULL DEFAULT NULL
)

-- ----------------------------
-- Records of tb_unmapped_user
-- ----------------------------
INSERT INTO `tb_unmapped_user`
VALUES (1, '张三', 28, 64);
INSERT INTO `tb_unmapped_user`
VALUES (2, '李四', 15, 128);
INSERT INTO `tb_unmapped_user`
VALUES (3, '王五', 9,  256);




© 2015 - 2025 Weber Informatics LLC | Privacy Policy