Mysqlプロンプト1064-You have an error in your SQL syntaxキーワード競合

590 ワード

1064 - 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 'from,to,msg,date,`status`)
エラーsql文
INSERT INTO message(from,to,msg,date,`status`)
VALUES (  10, 100, '111', '2019-04-17 11:04:24', 0);

このエラーは、テーブル内のカラム名とmysqlが保持しているキーワードが競合していることです.
sql文を見てどう思うか、fromのような明らかなキーワードはありますか.
このとき``を付ける必要がある
INSERT INTO message(`from`,`to`,msg,date,`status`)
VALUES (  10, 100, '111', '2019-04-17 11:04:24', 0);