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

304 B

the_second_work

在本地配置mysql环境并创建userservice数据库,在application.yml配置文件中设置数据库账号密码,根据下面sql语句建表:

CREATE TABLE user (
    id BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY,
    name VARCHAR(255) NOT NULL,
    age INT NOT NULL
);