首頁 返回 下一步 最後一頁 摘要 圖形
Stored Procedure(一)
Stored Procedure 用來預先定義一些資料庫程序,可以減少每次查詢資料庫系統分析SQL語意的時間,加速系統效率。
各家資料庫提供不同的附加語言,可能會造成系統相容性降低
- PL/pgSQL
- create function isgpar(char(8),int,int) returns bigint
- as 'select count(*) from gparsing where engs= $1 and sec = $3 and chap = $2 and wid = 0;'
- Language 'sql';