同時給兩個變數值賦值

2022-03-08 22:55:09 字數 1633 閱讀 9834

同時給兩個變數值賦值

1

--說明:查詢「退換貨單號」,"訂單編號"2--

3--日期:2012-09-26

4procedure

pro_query_chaorret_id(

5 prm_origin_id varchar2, --

**單號

6 prm_return_id varchar2, --

線上退貨單號

78 out_chaorret_id out varchar2, --

退換貨單號

9 out_order_id out varchar2, --

訂單編號

10 out_error_row out number, --

錯誤行11 out_error_msg out varchar2

--錯誤資訊12)

13is

14 resultcount integer(4

);15

16begin

17 out_error_row :=0;

18 out_error_msg :='';

1920

select

count(chaorret_id) into

resultcount

21from t_dd_returnorchange_note@linkerp

22where origin_id =

prm_origin_id

23and return_id =

prm_return_id;

2425

if resultcount >

0then

2627

select nvl(t.chaorret_id,''), nvl(t.order_id,'') into

out_chaorret_id, out_order_id

28from t_dd_returnorchange_note@linkerpt29

where origin_id =

prm_origin_id

30and return_id =

prm_return_id;

3132

else

3334 out_chaorret_id :='';

35 out_order_id :='';

3637

endif;38

39 out_error_row :=

1000;--

錯誤行40

41exception

42when others then

43 out_error_msg :=

'資料庫錯誤:'||

sqlerrm;

4445

end pro_query_chaorret_id;

交換兩個變數值

交換兩個變數的值 引入第三方變數 int x 5,y 3 int temp 0 temp x x y y temp system.out.println x x t y y 引入第三方變數是很容易解決的!不引入第三方變數 方法一 先求和,然後在從和裡面減掉乙個數,得到另乙個數 int a 3,b 5...

PHP交換兩個變數值

方法一 交換兩個變數的最簡單方法是使用第三個臨時變數 1 2 a 15 3 b 27 4 交換邏輯 5echo 交換前的數字為 6 echo a a.且 b b 7 temp a 8 a b 9 b temp 10 echo 交換後的數字為 11 echo a a.且 b b.輸出 交換前的數字為 ...

交換兩個變數值的方法

這是學程式設計的人都會想到的方法,因為邏輯性不是很強交換起來比較方便,能很快達到交換資料的目的,但是多乙個變數就需要為它分配儲存空間,以下為乙個例子 var left 10 var right 8 console.log 左手為 left console.log 右手為 right console....