真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

MYSQL中怎么管理存儲過程

今天就跟大家聊聊有關MySQL中怎么管理存儲過程,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據(jù)這篇文章可以有所收獲。

成都創(chuàng)新互聯(lián)企業(yè)建站,十余年網(wǎng)站建設經(jīng)驗,專注于網(wǎng)站建設技術,精于網(wǎng)頁設計,有多年建站和網(wǎng)站代運營經(jīng)驗,設計師為客戶打造網(wǎng)絡企業(yè)風格,提供周到的建站售前咨詢和貼心的售后服務。對于成都網(wǎng)站建設、成都網(wǎng)站制作中不同領域進行深入了解和探索,創(chuàng)新互聯(lián)在網(wǎng)站建設中充分了解客戶行業(yè)的需求,以靈動的思維在網(wǎng)頁中充分展現(xiàn),通過對客戶行業(yè)精準市場調研,為客戶提供的解決方案。

查看存儲過程函數(shù)名:

存儲過程:(注意字段name,type兩邊是ESC下面那個鍵)

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

show procedure status;

函數(shù):
select `name` from mysql.proc where db = 'your_db_name' and `type` = 'FUNCTION'

show function status;

查看存儲過程、函數(shù)代碼:

show create procedure proc_name;
show create function func_name;

查看視圖:

SELECT * from information_schema.VIEWS

查看表:

SELECT * from information_schema.TABLES //表

查看觸發(fā)器:
方法一:
語法:SHOW TRIGGERS [FROM db_name] [LIKE expr]
實例:SHOW TRIGGERSG //觸發(fā)器

方法二:
對INFORMATION_SCHEMA數(shù)據(jù)庫中的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中怎么管理存儲過程有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。


當前文章:MYSQL中怎么管理存儲過程
當前網(wǎng)址:http://weahome.cn/article/gjggdj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部