課程
/數(shù)據(jù)庫
/MySQL
/MySQL開發(fā)技巧(二)
mysql 查看數(shù)據(jù)存儲(chǔ)情況的sql語句怎么寫呢,求教啊
2016-11-27
源自:MySQL開發(fā)技巧(二)
正在回答
mysql查看存儲(chǔ)過程語句
????? 查詢數(shù)據(jù)庫中的存儲(chǔ)過程:
????? 方法一:
????? select `name` from mysql.proc where db = 'your_db_name' and `type` = 'PROCEDURE'
????? 方法二:
????? show procedure status;
????? 查看存儲(chǔ)過程或函數(shù)的創(chuàng)建代碼:
????? show create procedure proc_name; ????? show create function func_name;
舉報(bào)
DBA和開發(fā)人員都必備的技能,通過本教程能夠?qū)W會(huì)更多操作技術(shù)
2 回答如果我不確定有哪些數(shù)據(jù)要轉(zhuǎn)呢
1 回答課程中說能支持每秒并發(fā)1千的數(shù)據(jù)是怎么測(cè)試出這個(gè)數(shù)字的?
2 回答這個(gè)存儲(chǔ)過程使用到的事務(wù),說能解決并發(fā)問題,不太理解?
1 回答如果數(shù)據(jù)量非常大的話,寫個(gè)java方法去處理mobile字段的會(huì)不會(huì)更好?相對(duì)而言是不是也減輕了數(shù)據(jù)庫的壓力?
2 回答我在sql 2008寫的代碼,出錯(cuò)了要怎么改?
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2016-12-16
mysql查看存儲(chǔ)過程語句
????? 查詢數(shù)據(jù)庫中的存儲(chǔ)過程:
????? 方法一:
????? select `name` from mysql.proc where db = 'your_db_name' and `type` = 'PROCEDURE'
????? 方法二:
????? show procedure status;
????? 查看存儲(chǔ)過程或函數(shù)的創(chuàng)建代碼:
????? show create procedure proc_name;
????? show create function func_name;