首页 > 代码库 > SQL 表结构操作
SQL 表结构操作
数据库知识总结(表结构操作)
1.创建表Scores
1 create table Scores --表名 2 (Id int identity(1,1) primary key,--设置主键,并且行号自增,
identity(1,1)表示Id列从1开始自增,每次增加1 3 Date datetime not null, --设置类型为datetime,不能为空 4 Name nvarchar(50) not null, 5 Score nvarchar(2) --默认状态下,类型为空 6 )
2.修改表名Scores为NewScores
1 exec sp_rename ‘Scores‘,‘NewScores‘
3.删除表Scores
1 drop table Scores --删除表(表的结构、属性以及索引也会被删除)
4.清空表数据
1 truncate table Scores --仅仅删除表格中的数据
5.修改列Score为 not null
1 alter table Scores 2 alter column Score nvarchar(2) not null
6.添加列
1 alter table Scores 2 add new nvarchar(20) not null
7.修改列名
1 exec sp_rename ‘Scores.Name‘,‘NewName‘,‘column‘
8.删除列
1 alter table Scores 2 drop column new
9.修改identity列
如果说创建表时没有设置自增列。因为自增列不能直接修改,必须降原有Id列删除,然后重新添加一列具有identity属性的Id字段。
1 exec sp_pkeys @table_name=‘Scores‘ --查询主键名 2 alter table Scores drop constraint PK__Scores__3214EC074E3D66D2 --将主键约束先删去 3 alter table Scores drop column Id --将Id列删去 4 alter table Scores add Id int identity(1,1) --添加自增列(此时Id列不是主键) 5 alter table Scores add Id int identity(1,1) constraint pk primary key --添加自增列,设置Id为主键名字为pk
SQL 表结构操作
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。