sql - MySQL - Renaming table named "TABLE 12" -
this question has answer here:
- rename table spaces mysql 3 answers
i'm trying pass problem... namely can't rename table named "table 12" imported. got response:
#1064 - have error in sql syntax; check manual corresponds mysql server version right syntax use near ''table 12' categories' @ line 1
use ` instead of ' quote database/table/field-names in mysql. e.g.:
rename table `table 12` `categories`
Comments
Post a Comment