- UID
- 5970
- 积分
- 258
- 声望
- 点
- 精华
- 注册时间
- 2011-4-26
- 听众
- 最后登录
- 1970-1-1
- 在线时间
- 小时
|
connect;---------------------------连接数据库
select top 1 id into :ld_temp2 from my_tc_detail order by id desc ;-----选择表中的选定数据
string ls_hm
integer li_long
integer li_temp
li_long = len(ld_temp2) //字串长度
ls_hm = ld_temp2 //字串内容
do while li_long > 0
li_temp = integer(mid(ls_hm,li_long,1))
if li_temp < 9 then
ls_hm = replace(ls_hm,li_long,1,string(li_temp+1))
exit
else
ls_hm = replace(ls_hm,li_long,1,"0")
li_long -= 1
end if
loop-------------------------循环处理
|
|