zoukankan      html  css  js  c++  java
  • mysql 存储过程查询语句

    可以用 命令"show PROCEDURE status"查看所有的存储过程或检索系统表"mysql.proc"来查询已有的存储过程。
    例如:
    用show PROCEDURE status命令查看:
    -- 查看所有的存储过程
    show PROCEDURE status;
    -- 查看特定数据库存储过程
    show PROCEDURE status where db='test';

    -- 用指定的登录名查看该用户创建的存储过程
    show PROCEDURE status where definer='root@localhost'; -- @localhost为用户登录位置(本地登录)

    -- 查看指定时间段创建存储过程
    show PROCEDURE status where created between '2017-02-17 00:00:00'
    and '2017-02-17 23:59:59';

    用系统表mysql.proc来查看:
    -- 查看所有的存储过程信息
    select * from mysql.proc;

    -- 查看特定数据库里的存储过程
    select * from mysql.proc where db='test';

    -- 查看某个用户定义的存储过程
    select * from mysql.proc where definer='root@localhost';

    -- 查看某时间段创建的存储过程
    select * from mysql.proc where created between '2017-02-17 00:00:00'
    and '2017-02-17 23:59:59';
  • 相关阅读:
    Java类的访问权限
    安卓文件的保存路径问题
    Android 关于android.os.Build介绍
    java,安卓之信息的输出
    20141211
    20141208
    20141206
    20141203
    最近需要学习的东东
    Android:用代码修改一行文字中某几个字的颜色
  • 原文地址:https://www.cnblogs.com/jassin-du/p/8060400.html
Copyright © 2011-2022 走看看