数据库,表的创建与删除

时间:2022-09-18 21:10:37

 

使用T-SQL创建数据库的时候,脚本常常加上
if db_id('数据库的名字') is not null
drop database 数据库的名字;
-- 表示如果这个数据库存在就将其删掉,再重新创建
-- 函数db_id()表示获取数据库的id
 
建表的时候前面一般加上
if(OBJECT_ID('TestTbl', 'U')) is not null
drop table TestTbl;
 
函数object_id()是获得数据库中对象的标识符
参数U表示user table
 
 1 if db_id('TestDataBase') is not null drop database TestDataBase;
 2 create database TestDataBase
 3 on
 4 (
 5     name='TestDataBase',
 6     filename='F:\db\TestDataBase.mdf',
 7 -- mdf表示数据库文件,master data file
 8     size=10,
 9     filegrowth=10
10 )
11 log on
12 (
13     name='TestDataBase_log',
14     filename='F:\db\TestDataBase_log.ldf',
15 -- ldf表示日志文件,log data file
16     size=3,
17     filegrowth=10%
18 );