Drop database with illegal character
How can i drop a database containing the "-" symbol?
You can quote identifiers (for example table and column names) with backticks:
drop database `vms-0.1.0`
The identifier quote character is the backtick ("`"):