为什么这个MySQL语句会抛出语法错误?

Jam*_*ore 0 mysql

SQL语句:

INSERT INTO order (`ORDER_ID`,`SALE_CODE`,`CREATED_AT`,`UPDATED_AT`) VALUES ('2646253286','HPHS20','2009-07-11 12:07:40','2009-07-11 12:07:40')
Run Code Online (Sandbox Code Playgroud)

错误:

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 'order (`ORDER_ID`,`SALE_CODE`,`CREATED_AT`,`UPDATED_AT`) VALUES ('2646253286','H' at line 1 
Run Code Online (Sandbox Code Playgroud)

ban*_*ity 5

你有一个名为orderSQL的保留字.我不确定如何在MySQL中解决它,但在SQL Server中它会是这样的

insert into [order] ...
Run Code Online (Sandbox Code Playgroud)


moo*_*moo 5

修复反引号(`)以便修复此问题.