儲存過程語句
//簡單儲存過程的例子
//每呼叫一次列印一次hello world
create or replace procedure sayhelloworld
asbegin
dbms_output.put_line('hello world');
end;
sqlplus 下測試儲存過程
microsoft windows [版本 10.0.14393](c) 2016microsoft corporation。保留所有權利。
c:\users\wd>sqlplus
enter user-name: system
enter password:
connected to:
oracle database 11g enterprise edition release 11.2.0.1.0 -64bit production
sql> set serveroutput on //
開啟螢幕輸出開關 需要列印字串
sql>execute sayhelloworld();
hello world
pl/sql procedure successfully completed.
sql>
posted @
2017-07-19 16:00
wdmiye 閱讀(
...)
編輯收藏
我的第乙個MySQL儲存過程
之前做專案的時候,專案組中有成員在大資料量搜尋的時候使用了儲存過程。但是沒有仔細了解,今天突然使用到它,所以就稍微學習了一下。在乙個資料庫中新建乙個user庫,有姓名,財產什麼的,然後再建乙個儲存過程,將 寫上去 delimiter use nn drop procedure if exists a...
第乙個測試程式
下面列出乙個簡單的opengl程式 例4 1 opengl簡單例程 c include include include glos.h void main void 這個程式執行結果是在螢幕視窗內畫乙個紅色的方塊。下面具體分析整個程式結構 首先,在程式最開始處是opengl標頭檔案 前乙個是gl庫的標...
第乙個ACE測試例子
第乙個ace測試例子 下面的乙個測試例子在linux和windows下均通過,無需改動,只需重新編譯就可達到跨平台執行。從乙個側面反應了ace在可移植性上的魅力。ace 版本 5.6 編譯環境 linux version 2.6.18 4 686 debian 2.6.18.dfsg.1 12 gc...