sql查詢賦值
❶ sql中如何給變數賦值
DECLARE @n1 int,@n2 varchar(10)
set @n1 =(select age from table where column=xxx)
set @n2=(select gender from table where column = xxx )
------------------
或者一起賦值
就是樓上那個
DECLARE @n1 int,@n2 varchar(10)
select @n1 =age,@n2=gender
from table where column = xxx
------------------
select @n1,@n2 就知道變數的值了
❷ 如何用SQL語句把一個表值賦值到另外一個表中
--Sql server
update b set b.c=a.c from a,b where a.a=b.b
--Oracle
update B set c = (select c from A where A.a = B.b and rownum=1)
--rownum=1有多條紀錄取第一條,否則有重復紀錄(a.a=b.b>1)會報錯
❸ java中怎麼把sql查詢出的結果賦值給一個變數
理論上這樣賦值x0dx0aUser_Money=rst.getString("Money");x0dx0a但你要考慮一下你的資料庫,如果username和Money不是一對一的關系,即一盯激個名字對應三個Money,那麼你sql語句得到的將是值x0dx0a如果使用下面語句中檔x0dx0aif(rst.next()){x0dx0aUser_Money=rst.getString("Money");//將得到凱培襪第一個值x0dx0a}x0dx0a如果使用下面語句x0dx0awhile(rst.next()){ //有下一個值存在,while循環將繼續,那麼User_Money連續被賦值x0dx0aUser_Money=rst.getString("Money");//將得到第三個值x0dx0a}
❹ 如何將sql 中的數據查找並賦值給某個變數
1、代碼如下
declare
v_sal number;
begin
select sal from emp into v_sal where empno=7499;
dbms_output.put_line(v_sal);
end;
2、代碼就是將emp表中員工編號為7499的員工的sal欄位查詢出來賦值給v_sal並列印出來;