sql的update问题(50分)

  • 主题发起人 主题发起人 wmsoft
  • 开始时间 开始时间
W

wmsoft

Unregistered / Unconfirmed
GUEST, unregistred user!
比如:有字段XH,我要实现:
xh='6'+copy(xh,2,6)
如何用SQL语句实现?
 
可以用SUBSTR函数试
 
substring()
 
xh='6'+SubString(xh,2,6)
 
正确应是:
update table1
set xh='6'+SUBSTRING(XH FROM 2 FOR 6)
 
后退
顶部