- 1、本文档共8页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
库、表、约束创建以及删除
库、表、约束创建以及删除
__________________________________________________________________
--创建库
create database stuDB
--删除库
use master
go
if exists(select * from sysdatabases where name=stuDB)
drop database stuDB
--创建库
CREATE DATABASE stuDB
ON PRIMARY --默认就属于PRIMARY主文件组,可省略primary
(
NAME=stuDB_data, --主数据文件的逻辑名
FILENAME=D:\project\stuDB_data.mdf, --主数据文件的物理名
SIZE=5mb, --主数据文件初始大小
MAXSIZE=100mb, --主数据文件增长的最大值
FILEGROWTH=15% --主数据文件的增长率filegrowth
)
LOG ON
(
NAME=stuDB_log,
FILENAME=D:\project\stuDB_log.ldf,
SIZE=2mb,
FILEGROWTH=1MB
)
GO
_________________________________________________________________
--创建表
create table stuInfo
(
stuName varchar(20) not null,--姓名,非空
stuNo char(6) not null, --学号,非空
stuAge int not null,--年龄,int类型默认4个字节
stuID numeric(18,0),--身份证号码
stuSeat smallint identity(1,1),--座位号,自动编号
stuAddress text --住址,可以为空
)
--删除表
use stuDB
go
if exists(select * from sysobjects where name=stuInfo)
drop table stuInfo
______________________________________________________________________
--约束
--主键(primary key)
alter table stuInfo
add constraint pk_stuNo primary key(stuNo)
--唯一性(uinque)
alter table stuInfo
add constraint uq_stuID unique(stuID)
--默认填写(default(....) for)
alter table stuInfo
add constraint df_stuAddress
default(地址不详)for stuAddress
--检查(check(....))
alter table stuInfo
add constraint ck_stuAge
check(stuAge between 15 and 40)
--外键(foreign key(列名)referencs 主表名(列名))
alter table stuMarks
add constraint fk_stuNo
foreign key(stuNO)references stuInfo(stuNo)
create table stuMarks
(
stuNO char(6) not null
)
--删除约束
alter table 有约束的表明 drop 约束名
_________________________________________________________________________
--通配符
-- 通配符 解释 事例
-- ‘’_ 一个字符 A like C_
-- % 任意长度字符串 B like CO_%
-- [] 括号中所制定范围内的一个字符 C like 9W0[1-2]
-- [^] 不再括号内中所制定范围内的一个字符串 D like %[A-D][^1-2]
_____
文档评论(0)