增删改操作
Posted formulate0303
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了增删改操作相关的知识,希望对你有一定的参考价值。
delete from LEAP.工作单回写表 t where 姓名 like ‘2‘ #删除表中某些行
alter table LEAP.工作单回写表 drop column 填写人 #删除填写人字段列
alter table LEAP.工作单回写表 add (填写人 varchar2(20)) #增加填写人字段列
alter table LEAP.工作单回写表 rename column 填写人 to 填表人 #修改字段列名
alter table LEAP.工作单回写表 modify 填写人 varchar(200) #修改字段列类型
PS:
delete from table t where not exists (select 1 from table t1 where t1.STARTNO= t.ENDNO)
delete from table t where t.startno not in (select distinct t.endno from table)
以上是关于增删改操作的主要内容,如果未能解决你的问题,请参考以下文章