本月博客排行
-
第1名
kaizi1992 -
第2名
arpenker -
第3名
wy_19921005 - hanbaohong
- jh108020
- silverend
年度博客排行
-
第1名
龙儿筝 -
第2名
宏天软件 -
第3名
青否云后端云 - vipbooks
- wy_19921005
- benladeng5225
- fantaxy025025
- e_e
- kaizi1992
- tanling8334
- arpenker
- sam123456gz
- javashop
- zysnba
- xiangjie88
- lemonhandsome
- wallimn
- ganxueyun
- Xeden
- zhanjia
- xyuma
- wangchen.ily
- jh108020
- johnsmith9th
- zxq_2017
- jbosscn
- forestqqqq
- daizj
- ajinn
- xpenxpen
- 喧嚣求静
- kingwell.leng
- silverend
- kristy_yy
- lchb139128
- lich0079
- jveqi
- lzyfn123
- java-007
- sunj
- yeluowuhen
- lerf
- xiaoxinye
- flashsing123
- bosschen
- zhangjijun
- lxguy
- lyndon.lin
- sunnylocus
- chenqisdfx
最新文章列表
oracle修改varchar2为number,
1.为目标列增加一个临时列
alter table t_user_blood_pressure add user_id2 number(20);
2.将目标列的值复制到临时列
update t_user_blood_pressure set user_id2=nvl(to_number(user_id),0);
3.删除目标列
alter table t_user_blood_pressure dr ...