SQL Server2005中用語(yǔ)句創(chuàng)建數(shù)據(jù)庫(kù)和表
來(lái)源:易賢網(wǎng) 閱讀:1007 次 日期:2014-08-25 11:44:17
溫馨提示:易賢網(wǎng)小編為您整理了“SQL Server2005中用語(yǔ)句創(chuàng)建數(shù)據(jù)庫(kù)和表”,方便廣大網(wǎng)友查閱!

在SQL Server2005中用語(yǔ)句創(chuàng)建數(shù)據(jù)庫(kù)和表:

具體示例如下:

use master

go

if exists (select * from sysdatabases where name='Study')

--判斷Study數(shù)據(jù)庫(kù)是否存在,如果是就進(jìn)行刪除

drop database Study

go

EXEC sp_configure 'show advanced options', 1

GO

-- 更新當(dāng)前高級(jí)選項(xiàng)的配置信息

RECONFIGURE

GO

EXEC sp_configure 'xp_cmdshell', 1

GO

-- 更新當(dāng)前功能(xp_cmdshell)的配置信息。

RECONFIGURE

GO

exec xp_cmdshell 'mkdir D:\data', NO_OUTPUT

--利用xp_cmdshell 命令創(chuàng)建文件夾,此存儲(chǔ)過(guò)程的第一個(gè)參數(shù)為要執(zhí)行的有效dos命令,第二個(gè)參數(shù)為是否輸出返回信息。

go

create database Study--創(chuàng)建數(shù)據(jù)庫(kù)

on primary

(

name='Study_data',--主數(shù)據(jù)文件的邏輯名

fileName='D:\data\Study_data.mdf',--主數(shù)據(jù)文件的物理名

size=10MB,--初始大小

filegrowth=10% --增長(zhǎng)率

)

log on

(

name='Study_log',--日志文件的邏輯名

fileName='D:\data\Study_data.ldf',--日志文件的物理名

size=1MB,

maxsize=20MB,--最大大小

filegrowth=10%

)

go

use Study

go

if exists (select * from sysobjects where name='Student')--判斷是否存在此表

drop table Student

go

create table Student

(

id int identity(1,1) primary key,--id自動(dòng)編號(hào),并設(shè)為主鍵

[name] varchar(20) not null,

sex char(2) not null,

birthday datetime not null,

phone char(11) not null,

remark text,

tId int not null,

age as datediff(yyyy,birthday,getdate())--計(jì)算列。

)

go

if exists (select * from sysobjects where name='Team')

drop table Team

go

create table Team

(

id int identity(1,1) primary key,

tName varchar(20) not null,

captainId int

)

go

alter table Student

add

constraint CH_sex check(sex in ('男','女')),--檢查約束,性別必須是男或女

constraint CH_birthday check(birthday between '1950-01-01' and '1988-12-31'),

constraint CH_phone check(len(phone)=11),

constraint FK_tId foreign key(tId) references Team(id),--外鍵約束,引用Team表的主鍵

constraint DF_remark default('請(qǐng)?jiān)谶@里填寫備注') for remark--默認(rèn)約束,

go

更多信息請(qǐng)查看IT技術(shù)專欄

更多信息請(qǐng)查看數(shù)據(jù)庫(kù)
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢 | 簡(jiǎn)要咨詢須知 | 加入群交流 | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65317125(9:00—18:00) 獲取招聘考試信息及咨詢關(guān)注公眾號(hào):hfpxwx
咨詢QQ:526150442(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專用圖標(biāo)