Mysql Base Databases As They Are Called

enter image description here

I look at phpmyadmin and I see somethign that looks like subbats in mysql. What are they called !? Of course, I tried to search google, but I didn’t go too far, because I don’t even know what it is? scheme? sub-databases? any help would be greatly appreciated. tee.

+3
source share
3 answers

I don’t think there is a name for them -> you get them in PHPMyAdmin if you name something with an underscore (for example, "maindb" and "maindb_test"), but for MySQL itself there is no difference. This is just how PHPMyAdmin is trying to make it more understandable.

+4
source

PhpMyAdmin, () , :

projecta__table1

projecta__table2

projectb__table1

projectb__table2

PhpMyAdmin.

+5

These are databases. phpMyAdmin simply lists them in a funny way (by classifying the line before the first underscore (_)).

+2
source

All Articles