ERROR 1049 (42000): Unknown database

后端 未结 3 1431
逝去的感伤
逝去的感伤 2021-02-07 00:42

I can\'t seem to login to my tutorial database development environment:

Ayman$ mysql -u blog -p blog_development
Enter password: 
ERROR 1049 (42000): Unknown da         


        
3条回答
  •  别那么骄傲
    2021-02-07 01:24

    Its a common error which happens when we try to access a database which doesn't exist. So create the database using

    CREATE DATABASE blog_development;
    

    The error commonly occours when we have dropped the database using

    DROP DATABASE blog_development;
    

    and then try to access the database.

提交回复
热议问题