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.

schema.sql 233 B

12345678910111213
  1. USE `spring-boot-demo`;
  2. CREATE TABLE `t_user`
  3. (
  4. id BIGINT AUTO_INCREMENT,
  5. username VARCHAR(30),
  6. PRIMARY KEY (id)
  7. );
  8. INSERT t_user(username)
  9. VALUES ('xkcoding');
  10. INSERT t_user(username)
  11. VALUES ('spring-boot-demo-test');