Reputation: 91
In MySQL,
I want to change my table's name.
For example:
RENAME TABLE old_table to old;
Than I can meet syntax error message.
But:
RENAME TABLE old_table to old_;
It is success.
I don't want to use _(underscore)
.
Upvotes: 2
Views: 569