MySQL ERROR 1064 (42000): You have an error in your SQL syntax [fix]


MySQL Error 1064 - 42000
MySQL Error 1064 - 42000
MySql Error:

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 X at line 1

MySQL error 1064 (42000) usually occurs when you have an error in the query syntax that was executed. One of the reasons that can give you this error is when you are trying to create an object (table/database) which is having a hyphen in its name.

Example:
mysql> create database my-database;

How to fix: 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 '-database' at line 1



Solution:

Just wrap the object name with the hyphen with backtick to resolve the error.

mysql> create database `my-database`;

Facing issues? Have Questions? Post them here! I am happy to answer!

Author Info:

Rakesh (He/Him) has over 14+ years of experience in Web and Application development. He is the author of insightful How-To articles for Code2care.

Follow him on: X

You can also reach out to him via e-mail: rakesh@code2care.org



















Copyright © Code2care 2024 | Privacy Policy | About Us | Contact Us | Sitemap