MySQL query statement error code 1064 reasons and solutions

错误代码: 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 'SELECT job_id work_id FROM employees

The reason is probably that there are too many commas or lack of semicolons. I carefully check whether the statement has fewer symbols or more symbols.

Multiple statements need to be separated by commas, otherwise an error will be reported!

Guess you like

Origin blog.csdn.net/weixin_46999174/article/details/108774609