嘿我試了很多時間,但我無法修復這個簡單的程序,爲我的個人網站工作。我想提取當前時間並顯示一條消息用它。在Oracle中的功能,以獲得時間與顯示消息:)
喜歡當前時間是:上午12:00
這是我的代碼。
Create Function A1SF_GETTIME Is
Temptime Char(20);
Message Varchar2(20) := 'The Current Time is :';
Begin
Select to_char(sysdate, 'HH24:MI:SS') As "Current Time"
Into TempTime
From dual;
dbms_output.put_line(Message || ' ' || TempTime);
End;
喜歡你的答案,因爲它也返回,這將是在非常有用的消息我從Asp.net或Vb開始 – 2012-03-23 11:09:17