Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图整理我的本地数据库,这些数据库是过去项目中遗留下来的重复数据库和开发数据库。
要做到这一点,我在 Sequel pro 中查看,然后我使用 DROP DATABASE testdatabase;可以正常工作的命令删除它们。
DROP DATABASE testdatabase;
但是lorem-blog-db当我尝试运行DROP DATABASE lorem-blog-db;它时,我的一些 db 的名称类似于(带有破折号),它在“lorem-blog-db”附近返回了一个错误。
lorem-blog-db
DROP DATABASE lorem-blog-db;
知道如何解决这个问题吗?我想它与破折号有关。
In MySQL, you can use backticks to escape names. Like so:
DROP DATABASE `my-least-favorite-db`