最右侧点击database

加号新建连接

使用console输入mysql命令

输入下面命令

drop table if exists `test`;
create table `test` (
`id` bigint not null comment 'id',
`name` varchar(50) comment '名称',
`password` varchar(50) comment '密码',
primary key (`id`)
) engine=innodb default charset=utf8mb4 comment='测试';

测试查询

添加数据
