Default MySQL database name

后端 未结 4 1232
无人及你
无人及你 2021-02-15 10:44

I\'m trying to install mybb on a server but the admin is taking too long to respond. I have all the information I need except the database name. Is there a default name for mysq

4条回答
  •  -上瘾入骨i
    2021-02-15 11:09

    1. Do you have full database access? Then just add a database with a name of your choice:

      CREATE DATABSE rob_bb;
      
    2. If you only have a normal user access, the database name is often the same as the username.

    3. Or you can run the query

      SHOW DATABASES;
      

    to see what databases exist (which you are allowed to see).

提交回复
热议问题