根据字段长度筛选符合条件的数据:
select tbID from tablename where length(tbID)=2
在字段前添加0补齐3位:
select lpad(tbID,3,‘0‘) from tablename
更新字段值:
update tablename set tbID=lpad(tbID,3,‘0‘) where length(tbID)=2
同上,如果是1位更新为3位前面补0;
以上就是处理今天遇到的问题。
时间: 2024-10-29 04:40:32