|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
Federated将不同的Mysql服务器联合起来,逻辑上组成一个完整的数据库。非常适合分布式应用server|游标
游标利用办法:
usedb1
declaremy_cursorcursorscrolldynamic/*scroll暗示可随便挪动游标指针(不然只能向前),dynamic暗示能够读写游标(不然游标只读)*/
for
select姓名from团体材料
openmy_cursor
declare@namesysname
fetchnextfrommy_cursorinto@name
while(@@fetch_status=0)
begin
print姓名:+@name
fetchnextfrommy_cursorinto@name
end
fetchfirstfrommy_cursorinto@name
print@name
/*update团体材料set姓名=zzgwherecurrentofmy_cursor*/
/*deletefrom团体材料wherecurrentofmy_cursor*/
closemy_cursor
deallocatemy_cursor
注释
mysql的原来开发者又开发了MariaDB,MariaDB适合用来替代mysql吗 |
|