You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910
  1. DROP TABLE IF EXISTS `multi_user`;
  2. CREATE TABLE `multi_user`(
  3. `id` bigint(64) NOT NULL,
  4. `name` varchar(50) DEFAULT NULL,
  5. `age` int(30) DEFAULT NULL,
  6. PRIMARY KEY (`id`) USING BTREE
  7. ) ENGINE = InnoDB
  8. AUTO_INCREMENT = 1
  9. CHARACTER SET = utf8
  10. COLLATE = utf8_general_ci;