• MySQL存储过程查询


    查询存储过程

    select * from information_schema.ROUTINESG
    mysql> select * from information_schema.routines where routine_schema='world'G

    查询存储过程的创建语句

    mysql> show create procedure world.p_iterate;

    删除存储过程

    drop procedure procedure_name;

     早期版本查看存储过程

       select `name` from mysql.proc where db = 'xx' and `type` = 'PROCEDURE'   //存储过程
    
       select * from mysql.proc where db = 'xx' and `type` = 'PROCEDURE' and name='xx'

    查看存储过程状态

    show procedure status; //存储过程
  • 相关阅读:
    桶排序
    基数排序
    计数排序
    归并排序
    快速排序
    优先级队列-堆实现
    堆排序
    红黑树
    【转】二叉树
    ubuntu 16.04 mysql 相关
  • 原文地址:https://www.cnblogs.com/zh-dream/p/13130428.html
Copyright © 2020-2023  润新知