#SQL #SQL Server Creating a database The database is created with create database. Create a database named shop. create database shop; If you name the database or have special characters, enclose it in double quotes or parentheses. create database "shop.shop"; create database [shop.shop]; Delete database The database is deleted with the drop database. drop database shop; If you name the database..