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;
##4. SELET * FROM branch;
This is because the spelling error of SELECT is missing a C.
##5.SELECT * FORM branch;
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!