Navicat 工具创建Mysql存储过程

来源:互联网 发布:君子知怕分析 编辑:程序博客网 时间:2024/05/16 05:52

使用Navicat for MySQL工具创建存储过程步骤:

1. 新建函数(选择函数标签 -> 点击新建函数):

选择过程 --》完成


BEGIN   

    /* 定义变量 */  
    declare tmp0 VARCHAR(1000);  
    declare tmp1 VARCHAR(1000);  
    declare done INT default -1;  -- 用于控制循环是否结束  
        
    /* 声明游标 */    
    declare myCursor cursor for select cell_0 ,cell_1 from t_test;    
        
    /* 当游标到达尾部时,mysql自动设置done=1     */    
    declare continue handler for not found set done=1;   
        
    /* 打开游标 */    
    open myCursor;    
        
    /* 循环开始 */    
    myLoop: LOOP    
        
        /* 移动游标并赋值 */    
        fetch myCursor into tmp0,tmp1;    
          
                -- 游标到达尾部,退出循环  
        if done = 1 then     
        leave myLoop;    
        end if;    
            
        /* do something */    
        -- 循环输出信息  


              select tmp0,tmp1 ;
 
                -- 可以加入insert,update等语句  
        
    /* 循环结束 */    
    end loop myLoop;    
        
    /* 关闭游标 */    
    close myCursor;    
END
0 0
原创粉丝点击