The goal was to continue working on a project in the Java language that uses the database.
The course of action:
1. Install MySQL Community Server and IntellJ IDEA.
2. Creating a test pattern in MySQL Workbench and creating a test table there. Everything went well.
3. Configuring IDE from DB.
4. Import database dump into MySQL Workbench.
5. Import project in Java in IDE.
6. Compilation of the project and launching, testing the operation of the application from the database. Passed successfully.
7. Attempting to create a new table next to an existing one, receiving an error:
Operation of the SQL script to the database.
Executing:
CREATE TABLE test . new_table ();
ERROR 1064: You have an error in your SQL syntax; check my server for syntax to use right ')' at line 2
SQL Statement:
CREATE TABLE test . new_table ()
8. Creating a new test scheme, not related to the project, an attempt to create a test table there. Also the same error.
What could be the problem? Operations of viewing records in tables, adding a new record occur without problems.