您的位置:首页 > 编程语言 > Java开发

java.io.FileNotFoundException: class path resource [META-INF/xfire/services.xml] cannot be opene

2015-12-17 11:17 841 查看
declare test_cursor cursor scroll for select id from member
open test_cursor
declare @id int
while @@FETCH_STATUS=0
begin
print @id
update member set mobile = cast(rand()*100000000000 as bigint) where id=@id ;
fetch next from test_cursor into @id
end
close test_cursor
deallocate test_cursor
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: