- create table tablea(id int,ip varchar(15),apps varchar(10))
- insert into tablea select 23,'127.0.0.1','aaa'
- go
- declare @Variable1 varchar(15),@Variable2 varchar(10)
- select @Variable1 = ip ,@Variable2 = apps from tablea where id = 23
-
- select @Variable1,@Variable2
- /*
- --------------- ----------
- 127.0.0.1 aaa
-
- (1 行受影響)
-
- */
- go
- drop table tablea
SQLSERVER的多字值賦值方式如上所示,直接SELECT就可以
但在Oracle的PLSQL下 select into 只能賦值單個變數,不能進行多變數同時賦值。
如 : select count(*) into nb_count from t_khz where fzbh=V_fzbh;
多變數賦值一般採取遊標FETCH的方式:
- cursor c_rw is
- select * from t_kh
-
- r_rw c_rw%rowtype;
- open c_rw;
- loop
- fetch c_rw into r_rw;
- exit when c_rw%notfound;
- dbms_output.put_line(r_rw.khbh||' '||r_rw.khxm||' '||r_rw.yzbm);
- end loop;
- close c_rw;
還有就一種方式就是用ROWTYPE
- -- Local variables here
- i integer;
- v_kh t_kh%rowtype;
- gin
- -- Test statements here
-
-
- select * into v_kh from t_kh where rownum=1;
- dbms_output.put_line(v_kh.khbh||' '||v_kh.khxm||' '||v_kh.yzbm);
-
-
-
- d;
更多Oracle相關資訊見Oracle 專題頁面 http://www.bkjia.com/topicnews.aspx?tid=12