怎么用SQL语句修改指定字段的数值?

2025-03-10 23:52:48
推荐回答(1个)
回答1:

update table1 set aa= '5'+right(aa,len(aa)-1) where left(aa,1)='3'
搞定。