新网创想网站建设,新征程启航

为企业提供网站建设、域名注册、服务器等服务

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'

看完上述内容,你们对MYSQL中怎么管理存储过程有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注创新互联行业资讯频道,感谢大家的支持。


网页标题:MYSQL中怎么管理存储过程
文章路径:http://www.wjwzjz.com/article/gjggdj.html
在线咨询
服务热线
服务热线:028-86922220
TOP