为表增加列及查看某列

alter table AP_CONTRACT_LEGAL add (seq number(3)) 

这个语句的意思是为AP_CONTRACT_LEGAL 这个表,增加seq这一列,数字不超过3位

update AP_CONTRACT_LEGAL set seq=0 where seq is null

这个语句的意思是AP_CONTRACT_LEGAL 这个表,设置seq这一列的数据为0,seq这一列为空值时

select seq from AP_CONTRACT_LEGAL 

查询AP_CONTRACT_LEGAL  的seq这一列的数据

 

表的别名,t为表ap_contract_baseinfo的别名

update ap_contract_baseinfo t set t.typecode='xuqianhetong'

where t.name='二次电源研制合同2'

and t.takername='王修益'

 

你可能感兴趣的:(ORACLE问题处理)