mysql 创建表标准语句
create table IF NOT EXISTS `test_user`
(
id int auto_increment,
username varchar(255) null,
password varchar(255) null,
mobile varchar(255),
primary key (`id`)
)
ENGINE = InnoDB
DEFAULT CHARSET = utf8mb4 comment '权限测试用的表';