1. Error description
1 queries executed, 0 success, 1 errors, 0 warnings 查询:create database test 错误代码: 1007 Can't create database 'test'; database exists 执行耗时 : 0 sec 传送时间 : 0 sec
Related recommendations: "Navicat for mysql usage graphic tutorial"
2. Error Reason
When creating a database, the same SQL statement was executed twice, resulting in repeated creation of the database.
CREATE DATABASE test;
3. Solution
(1) Do not execute the statement.
(2) If the test is created incorrectly, delete it and re-execute the above SQL.
The above is the detailed content of What should I do if a 1007 error occurs in Navicat?. For more information, please follow other related articles on the PHP Chinese website!