What is the solution to mysql error code 1064?
Mysql error code 1064 solution:
1. First, we enter mysql in the command line mode and enter mysql -uroot -p.
2. Then enter one of the databases.
SHOW DATABASES;
USE testdb;
##3.SELECT * FROM branch,; The errors here are commas and semicolons. This is a common input error.##4. SELET * FROM branch;
This is because the spelling error of SELECT is missing a C.
##5.SELECT * FORM branch;
There is also a writing error here, FORM should be changed to FROM.Recommended tutorial: "Mysql video tutorial
"The above is the detailed content of What is the solution to mysql error code 1064?. For more information, please follow other related articles on the PHP Chinese website!