sqlserver 部分變量的應用。本站提示廣大學習愛好者:(sqlserver 部分變量的應用)文章只能為提供參考,不一定能成為您想要的結果。以下是sqlserver 部分變量的應用正文
A. 應用 DECLARE
下例應用名為 @find 的部分變量檢索一切姓以 Ring 開首的作者信息。
Use pubs
declare @find varchar(30)
set @find='Ring%'
select au_lname,au_fname,phone
from authors
where au_lname like @find
@find就是一個部分變量。
B. 在 DECLARE 中應用兩個變量
下例從 Binnet & Hardley (pub_id = 0877) 的雇員中檢索從 1993 年 1 月 1 日起所雇傭的雇員稱號。
USE pubs
SET NOCOUNT ON
GO
DECLARE @pub_id char(4), @hire_date datetime
SET @pub_id = '0877'
SET @hire_date = '1/01/93'
-- Here is the SELECT statement syntax to assign values to two local
-- variables.
-- SELECT @pub_id = '0877', @hire_date = '1/01/93'
SET NOCOUNT OFF
SELECT fname, lname
FROM employee
WHERE pub_id = @pub_id and hire_date >= @hire_date
上面是成果集:
fname lname
-------------------- ------------------------------
Anabela Domingues
Paul Henriot
(2 row(s) affected)