create database SpringBoot; use SpringBoot; create table user( userId int not null primary key auto_increment, userName varchar(64) not null , password varchar(128) not null );