快速业务通道

面试准备之SQL 2——数据库的实现(T-SQL建库建表)

作者 佚名技术 来源 数据库编程 浏览 发布时间 2012-03-21

1. 数据库文件包括:

主数据文件:*.mdf

次要数据文件:*.ndf

日志文件:*.ldf ( l 是 L 的小写)

 

2.使用T-SQL创建数据库

 

代码
use master
go
-----------创建数据库------------

if exists (select * from sysdatabases where name=''stuDB'')
drop database stuDB
create database stuDB
on PRimary
(
name=''stuDB_data'',
filename=''D:\stuDB_data.mdf'',
size=3mb,
maxsize=10mb,
filegrowth=1mb
)
log on
(
name=''stuDB_log'',
filename=''D:\stuDB_data.ldf'',
size=1mb,
filegrowth=1mb
)

 

 

3.使用T-SQL 创建数据库表

 

代码
-----------创建数据库表------------
use stuDB
go
if exists (select * from sysobjects where name=''stuInfo'')
drop table stuInfo
create table stuInfo
(
    stuName varchar(20) not null,
    stuNo char(6) not null,
    stuAge int not null,
    stuID numeric(18,0),--身份证
    stuSeat smallint identity(1,1),
    stuAddress text
)
go

if exists (select * from sysobjects where name=''stuMarks'')
drop table stuMarks
create table stuMarks
(
    ExmaNo char(7) not null, --考号
    stuNo char(6) not null,--学号
    writtenExam int  not null,--笔试成绩
    LabExam int not null--机试成绩
)
go
 

 

4. 添加约束

 

代码
--------------添加约束-----------------

alter table stuinfo --修改stuinfo表
add constraint PK_stuNo primary key (stuNo)--添加主键 PK_stuNo是自定义的主键名 也可以省略

alter table stuinfo
add constraint UQ_stuID unique (stuID) --添加唯一约束

alter table stuinfo
add constraint DF_stuAddress default (''地址不详'') for stuAddress--添加默认  不填默认’地址不详‘

alter table stuinfo
add constraint CK_stuAge check(stuAge between 18 and 60) --添加检查约束 18-60岁

alter table stuMarks
add constraint FK_stuNo foreign key(stuNo) references stuInfo(stuNo)
go
 

 

5.删除约束

 

-------------删除约束--------------
alter table stuinfo
drop constraint 约束名 --如:FK_stuNo  CK_stuAge DF_stuAddress UQ_stuID PK_stuNo

 

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号