本文介绍了如何将值插入列值..?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Iam面临一个问题,比如



columna

40100473347

910028421331

1010067535071



i想要更新此列值,如下面的格式



columna

84010100473347

00910028421331

01010067535071



如何为此查询

Iam facing one problem like

columna
40100473347
910028421331
1010067535071

i want to update this column value like in below format

columna
84010100473347
00910028421331
01010067535071

how to write query for this

推荐答案

update mytable set columna = '84010100473347' where columna = '40100473347';



等等( [])。


这篇关于如何将值插入列值..?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-11 10:52