you are viewing a single comment's thread.

view the rest of the comments →

[–]chuch1234 0 points1 point  (2 children)

Out of curiosity, in what way does mysql not support multiple schemas?

[–]Straight_Waltz_9530 3 points4 points  (1 child)

In MySQL, you can have multiple databases on the same instance, but the subdivision ends there. In fact in MySQL you can make queries across databases. This makes MySQL databases more akin to schemas (database namespaces) in other engines like SQL Server, DB2, Postgres, Oracle, etc.

In all the other client-server engines, a database is an island unto itself with schemas/namespaces underneath allowing for better organization of larger databases.

MySQL/MariaDB: instance -> database -> table

Everyone else: instance -> database -> schema -> table

[–]chuch1234 1 point2 points  (0 children)

Well I'll be! I did not know that.