失效链接处理 |
数据库有关语法 PDF 下载
本站整理下载:
相关截图:
主要内容:
1、创建库: create database 数据库名; create database BookDB ON PRIMARY ( name='BookDB', filename='D:\数据库文件\BookDB.mdf', size=6MB )log on ( name='Book_log', filename='D:\数据库文件\BookDB_log.ldf', size=2MB )2、删除库: drop database 数据库名; 3、创建表: create table 表名( 字段名 数据类型 [约束条件][默认值], ...... )identity(1,1) -- 自动增长,初始值1,增量1 primary key --主键 not null --不允许为空 default --默认值 foreign key(classID) references Class(classID) --外键对应主表主键 4、新增字段: alter table 表名 add 字段名 数据类型 5、删除字段: alter table 表名 drop column 字段名 6、修改字段不能为空: alter table 表名 alter column 字段 数据类型 not null 7、重命名表名:
exec sp_rename '原表名','新表名' 8、重命名列名: exec sp_rename '表名.字段名','表名.新字段名' 9、修改字段类型 alter table 表名 alter column 字段名 数据类型 10、添加主键: alter table表名 add constraint 约束名 primary key(字段名) 11、添加唯一约束: alter table 表名 add constraint 约束名 unique(字段名) 12、为某列添加默认值: alter table 表名 add constraint 约束名 default(默认值) for 字段名 13、添加check约束: alter table 表名 add constraint 约束名 check(内容) 14、添加外键约束:
|