标签:star rom delete rop arch add 增加 lte end
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)
标签:star rom delete rop arch add 增加 lte end
原文地址:https://www.cnblogs.com/Formulate0303/p/12604594.html