mysql 8.0.30 在创建表时显示出错,如何解决?

mysql 8.0.30 在创建表时显示出错,和视频一样的代码,视频是 8.0.26版本
mysql> use dbtest1;
Database changed
mysql> create table employees(id int.name varchar(15));
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'int.name varchar(15))' at line 1

逗号不是.呀

create table employees(id int,name varchar(15));

create table employees(id int,name varchar(15));
create table employees(id int, name varchar(15));

create table employees(id int,name varchar(15));
遇到问题题主可以自己先尝试弄明白报错提示,然后尝试一下解决办法,希望题主以后还是要细心一些,此外注意是英文状态的,而非中文状态下的,