发布网友 发布时间:2022-04-23 04:48
共2个回答
热心网友 时间:2022-04-09 06:00
ALTER TABLE – SQL 命令 示例 请参阅 以编程方式修改表的结构。 --如何用SQL语句更改表的列的数据类型和添加新列和约束 --增加一列 ALTER TABLE 表名 ADD 列名 VARCHAR(20) NULL --删除一列 ALTER TABLE 表名 drop COLUMN 列名 --修改一列 alter TABLE 表名 ALTER COLUMN 列名 VARCHAR(40) NULL --修改一列的类型 alter TABLE 表名 ALTER COLUMN 列名 VARCHAR(40) --添加主键约束 alter table 表名 add constraint 约束名 primary key (列名) --添加唯一约束 alter table 表名 add constraint 约束名 unique (列名) --添加默认约束 alter table 表名 add constraint 约束名 default(内容) for 列名 --添加check约束alter table 表名 add constraint 约束名 check(内容) --添加外键约束 alter table 表名 add constraint 约束名 foreign key(列名) references 另一表名(列名) --删除约束 alter table 表名 drop constraint 约束名 --纵向连接两个表 select *from stuInfo union select *from stuMarks --重命名,表名 exec sp_rename '原表名','改后表名' --重命名,列名 exec sp_rename '表名.原列名','改后列名','column' ============================================================= alter table – sql 命令示例示例 1 往表 customer 中添加字段 fax, 并且允许字段有空值。示例 2 使 cust_id 字段为 customer 表的主关键字。示例 3 给 orders 表中的 quantity 字段添加有效性规则,使字段 quantity 的值非负。示例 4 基于表 customer 的关键字 cust_id和表 orders 中的候选关键字 cust_id,建立 customer 和 orders 间的一对多永久关系。示例 5 删除表 orders 的 quantity 字段的有效性规则。示例 6 删除表 customer 和表 orders 间的永久关系,但保持 orders 表中的 cust_id 索引标识。*示例 1set path to (home( ) + 'samples\data\') && 为表设置路径alter table customer add column fax c(20) null*示例 2alter table customer add primary key cust_id tag cust_idalter table customer alter column cust_id c(5) primary key*示例 3alter table orders;alter column quantity set check quantity >= 0;error "quantities must be non-negative"*示例 4alter table orders;add foreign key cust_id tag cust_id热心网友 时间:2022-04-09 07:18
建立 新表的语句: