在字符型字段中间插入字符的SQL语句怎么写?(30分)

  • 主题发起人 主题发起人 lssgj
  • 开始时间 开始时间
L

lssgj

Unregistered / Unconfirmed
GUEST, unregistred user!
在客户表中我想把“E001”这样的客户编号变为“E0001”我用下面的语句怎么不行?
该咋写(oracle表):
update gadata0007.customer
set strcustomercode='E0'+right(strcustomercode,3)
而这样写却可以:
update gadata0007.customer
set strcustomercode='E0001'
where strcustomercode='E001'
下面的语句仍不行:
update gadata0007.customer
set strcustomercode='E0'+'001'
where strcustomercode='E001'
看来问题出在“+”上或是该用其他字符函数。我刚学SQL,请多指教
 
update gadata0007.customer
set strcustomercode='E0'|'001'
where strcustomercode='E001'
你具体看以下Oracle的语法呀
每种数据库的SQL语句语法略有不同的
 
谢谢twos,我在sql2000上用那语法就行,有没有地方可以下载oracle的SQL语法的呀?
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
后退
顶部