While creating the table with name spaces using MySQL Database, it's throwing the below error.
ERROR 1064 (42000): 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 '[school name] VARCHAR(20))' at line 1
Here is my simple table creation of the code :
create table table_dump(name varchar(20), address varchar(20), [school name] varchar(20));
or
create table table_dump(name varchar(20), address varchar(20), "school name" varchar(20));