码迷,mamicode.com
首页 > 其他好文 > 详细

增、删、改操作

时间:2020-03-31 14:03:50      阅读:69      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!