我是絕對的noob,找不到這個答案。 如何將結果添加到臨時表中? 也許你們對我有改善我的代碼的一些提示? 我在這裏用遊標在結果中創建了一個函數。但我需要: drop function if exists non_married_presidents();
create or replace function non_married_presidents()
returns varchar as
我創建了一個臨時表和一個存儲函數來讀取它。當我打電話給下面的消息出現: RA-22905: Zugriff auf Zeilen eines Objekts, das keine Nested Table ist, nicht möglich
22905. 00000 - "cannot access rows from a non-nested table item"
*Cause: att
我準備我的考試和我遇到一個奇怪上年實際考試問題跌跌撞撞: public int createUniqueCasenumber (GregorianCalendar date, int departmentID) {
int temp = 0;
temp = date.get(GregorianCalendar.DAY_OF_MONTH);
temp = tem
假設以下兩類: struct A {
A() {}
};
struct B {
B(const A& a) {}
};
它發生在我多次遇到這樣的情況,我必須以建立創建一個類的臨時實例我需要使用的一個實例。喜歡的東西: A a;
// Do very complex computations using a;
B b(a);
// use b, a is not