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.
|
- USE `spring-boot-demo`;
- CREATE TABLE `t_user`
- (
- id BIGINT AUTO_INCREMENT,
- username VARCHAR(30),
- PRIMARY KEY (id)
- );
-
- INSERT t_user(username)
- VALUES ('xkcoding');
-
- INSERT t_user(username)
- VALUES ('spring-boot-demo-test');
|