摘要: 根据字段长度筛选符合条件的数据: select tbID from tablename where length(tbID)=2 在字段前添加0补齐3位: select lpad(tbID,3,'0') from tablename 更新字段值: update tablename set tbID= 阅读全文
posted @ 2016-04-16 12:27 CNMG 阅读(393) 评论(0) 推荐(0)