create database 和 create schema
在MySQL中,create database 和 create schema 是一样的,这点可以在官网上查询的到。
在SQL Server中又不太一样。
CREATE DATABASE creates a database with the given name.
To use this statement, you need the CREATE privilege for the database.
CREATE SCHEMA is a synonym for CREATE DATABASE.