创建数据库时,报错ERROR 1064 (42000): You have an error in your SQL syntax;

问题遇到的现象和发生背景

(1)我按照视频流程操作的,结果在创建数据库时,
报错ERROR 1064 (42000): You have an error in your SQL syntax;
(2)但up主是能正常操作的。

问题相关代码,请勿粘贴截图
mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
+--------------------+
4 rows in set (0.00 sec)

mysql>  creat database teaching;
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 'creat database teaching' at line 1

运行结果及报错内容
我的解答思路和尝试过的方法
我想要达到的结果

create database teaching;
create,你少写了一个e

img