What are the differences in database terminology between MS SQL and MySQL?
Can a MySQL instance have more than one database? It appears that it can only create different schemas. However, the SQL command is create database.
In MS SQL, you can create multiple databases… each have a default schema of dbo?… but multiple schemas in a database is still possible?
From this link, we see that MS SQL schemas are no longer tied to users, here’s the relevant quote:
In MySQL, databases and schemas are exactly the same thing, you can even interchange the word in the commands, i.e. CREATE DATABASE has the synonym CREATE SCHEMA.
MySQL supports multiple databases (schemas) and MS SQL supports multiple databases and multiple schemas.