how to drop a mysql database which is having numbers -
i created mysql database name 123, when want drop it,it not dropping , throwing error. used query. drop database 123; , tried drop database '123'; . other databases name abc123 dropping. solution greatful.
try use this:
drop database `123`
you need put name inside backticks.
Comments
Post a Comment