Unable to create a simple database in mySQL

mac07
CREATE DATABASE 'hello' ;

19:40:38 CREATE DATABASE 'hello' Error Code: 1064. 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 ''hello'' at line 1

I installed mysql with default settings and I don't know if it has anything to do with the settings.

Can someone tell me how to fix this error?

SDK

Basic syntax of CREATE DATABASE statement is as follows:

        CREATE DATABASE DatabaseName;

Try Like Below...

        CREATE DATABASE hello;

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related