I'm using SQLAlchemy to execute SQL queries against different database engines.
For MySQL, I use the following query to create a database, if it doesn't already exist:
CREATE DATABASE IF NOT EXISTS {db} CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci
Does MSSQL support an equivalent form of the MySQL statement CREATE DATABASE IF NOT EXISTS {db}
? to create a database, if it doesn't already exist?