在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.