mysql 存储过程 管理_MYSQL存储过程管理

查看存储过程函数名:

存储过程:(注意字段name,type两边是ESC下面那个键)

select `name` from mysql.proc where db = 'your_db_name' and `type` = 'PROCEDURE'

show procedure status;

函数:

select `name` from mysql.proc where db = 'your_db_name' and `type` = 'FUNCTION'

show function status;

查看存储过程、函数代码:

show create procedure proc_name;

show create function func_name;

查看视图:

SELECT * from information_schema.VIEWS

查看表:

SELECT * from information_schema.TABLES //表

查看触发器:

方法一:

语法:SHOW TRIGGERS [FROM db_name] [LIKE expr]

实例:SHOW TRIGGERSG //触发器

方法二:

对INFORMATION_SCHEMA数据库中的TRIGGERS表查询

mysql>SELECT * FROM triggers T WHERE trigger_name=”mytrigger” G

那么,修改一个存储过程或重新编译一个存储过程如下:

select `name` from mysql.proc;

tee c:1.txt

show create procedure procedure_name G

notee

drop procedure procedure_name;

delimiter //

create procedure 。。。

//

delimiter ;

select `name` from mysql.proc;

show create procedure procedure_name G

[@more@]

mysql> help

For information about MySQL products and services, visit:

http://www.mysql.com/

For developer information, including the MySQL Reference Manual, visit:

http://dev.mysql.com/

To buy MySQL Enterprise support, training, or other products, visit:

https://shop.mysql.com/

List of all MySQL commands:

Note that all text commands must be first on line and end with ';'

? (?) Synonym for `help'.

clear (c) Clear the current input statement.

connect (r) Reconnect to the server. Optional arguments are db and host.

delimiter (d) Set statement delimiter.

ego (G) Send command to mysql server, display result vertically.

exit (q) Exit mysql. Same as quit.

go (g) Send command to mysql server.

help (h) Display this help.

notee (t) Don't write into outfile.

print (p) Print current command.

prompt (R) Change your mysql prompt.

quit (q) Quit mysql.

rehash (#) Rebuild completion hash.

source (.) Execute an SQL script file. Takes a file name as an argument.

status (s) Get status information from the server.

tee (T) Set outfile [to_outfile]. Append everything into given outfile.

use (u) Use another database. Takes database name as argument.

charset (C) Switch to another charset. Might be needed for processing binlog

with multi-byte charsets.

warnings (W) Show warnings after every statement.

nowarning (w) Don't show warnings after every statement.

For server side help, type 'help contents'

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值