创建一个叫 student_information 的数据库
if exists (select * from sysdatabases where name = 'student_information')
-- 如果 exists 返回 true,则执行删除数据库操作
drop database student_information
-- 如果 exists 返回 false,则直接创建数据库
create database student_information
ON --主数据 ON()
(
NAME = student_information, -- 数据逻辑名
FILENAME = 'E:\SQL\student_information_mdf', --数据存储路径
SIZE = 10, --初始大小
MAXSIZE = 40, --最大尺寸
FILEGROWTH = 5% -- 增长方式 百分比
)
LOG ON --日志数据 LOG ON()
(
NAME = student_information_log, -- 数据逻辑名
FILENAME = 'E:\SQL\student_information_ldf', --数据存储路径
SIZE = 2, --初始大小
MAXSIZE = 10, -- 最大尺寸
FILEGROWTH = 1 -- 增长方式 MB
)