发布网友 发布时间:2022-04-13 16:45
共9个回答
热心网友 时间:2022-04-13 18:15
ORACLE 更新字段问题?热心网友 时间:2022-04-13 19:33
update table set 价钱=replace(价钱,'元','')热心网友 时间:2022-04-13 21:07
update table 表名 set 价钱字段=substr('价钱字段',0,length(‘价钱字段')-1);热心网友 时间:2022-04-13 22:59
replace(价钱,'元','')热心网友 时间:2022-04-14 01:07
如果字段名称是通过变量temp动态获得的,你必须要写动态SQL了,把这个SQL拼写出来,然后热心网友 时间:2022-04-14 03:31
update table set 价钱=replace(价钱,'元','')热心网友 时间:2022-04-14 06:13
上面两种都行啊热心网友 时间:2022-04-14 09:11
查询过程中截取一定长度就行