При попытке создать базу данных через кмд mysql возникает ошибка
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 'group varchar(20) not null,
nameSurname tinytext,
Otchestvo tinytext,
adress tin' at line 3
Версия MYSQL 8.0
Сам запрос на создание БД:
create table students (
-> id int not null auto_increment primary key,
-> group varchar(20) not null,
-> nameSurname tinytext,
-> Otchestvo tinytext,
-> adress tinytext,
-> homePhone tinytext,
-> contactPhone varchar(12) not null,
-> yearOfEntry date,
-> avgGradePoint float,
-> );