1、用非空列 修改 空列
update z_taxidriver
set mobile=zzdh
where mobile is null and zzdh is not null
2、用全外连接 创建 一个 表格 ,表格的某列中取一定范围的值
create table c as
select a.1 a.2 b.1 b.2
from a full outer join b
on a.3=b.3 and a.1 in (‘ ‘,‘ ‘);
3、给某字段 增加部分内容
upadte a set a.1=concat(‘nihao‘,a.1)
concat(str1,str2,str3,...) 有文章介绍 oracle 只能连接两个,没有尝试
删除某部分内容
update a set a.1=replace(a.1,‘你好‘,‘‘)
REPLACE ( ‘‘string_replace1‘‘ , ‘‘string_replace2‘‘ , ‘‘string_replace3‘‘ )
用第三个表达式替换第一个字符串表达式中出现的所有第二个给定字符串表达式。
修改表格使用到的几个命令
时间: 2024-10-06 00:41:24