行 改
update 成绩表
set
列0=0,列1=1,列2=2
where 列2=1004;
where后面是条件,某个属性值的等于条件
列 改 (插入新列)
alter table 成绩表
add 英语分数 char(10)
列 删除
alter table 成绩表
drop column 英语分数
列 改(修改列属性)
alter table 成绩表
alter column 姓名 varchar(10) not null
列 改(列改主键)
alter table 成绩表
add primary key ( 学号 )
列 改(去除约束 包括主键,检查)
select * from sysobject
where parent_obj in
(
select id from sysobject where name='成绩表'
);
会获取到约束值 xxxxxxxx
alter table 成绩表
drop constraint xxxxxxxxxx
表重命名
exec sp_rename '旧表名','新表名'
rename 旧表名 to 新表名 --oracle数据库