在MySQL中执行下列语句
insert into product_ order (order_product_id,order_id,book_id,total_price,total_num) values (2,3,3,45.5,45)order_product_id
order_id
book_id
均为INTEGER类型
total_num 
为SMALLINT类型
total_price
为DOUBLE类型错误为
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_product_id,order_id,book_id,total_price,total_num) values (2,3,3,45' at line 1请问这是为什么?