sp_executesql (Transact-SQL)
執行可重複多次使用或已動態建立的 Transact-SQL 陳述式或批次。Transact-SQL 陳述式或批次可包含內嵌參數。
安全性注意事項 |
---|
執行階段編譯的 Transact-SQL 陳述式可能會讓應用程式面臨惡意攻擊的威脅,例如 SQL 資料隱碼。 |
語法
sp_executesql [ @statement = ] statement
[
{ , [ @params = ] N'@parameter_name data_type [ OUT | OUTPUT ][ ,...n ]' }
{ , [ @param1 = ] 'value1' [ ,...n ] }
]
引數
[ @statement = ] statement
這是包含 Transact-SQL 陳述式或批次的 Unicode 字串。statement 必須是 Unicode 常數或 Unicode 變數。不允許使用比較複雜的 Unicode 運算式,如用 + 運算子來串連兩個字串。不允許使用字元常數。如果指定了 Unicode 常數,它的前置詞必須是 N。例如,Unicode 常數 N'sp_who' 有效,但字元常數 'sp_who' 無效。字串大小只受到可用資料庫伺服器記憶體的限制。在 64 位元伺服器中,字串大小會受到 nvarchar(max) 大小上限 2 GB 的限制。[!附註]
stmt 可以包含與變數名稱格式相同的參數,例如:N'SELECT * FROM HumanResources.Employee WHERE EmployeeID = @IDParameter'
在 @params 參數定義清單和參數值清單中,stmt 所包含的每個參數都必須有對應的項目。
[ @params = ] N'@parameter_namedata_type [ ,... n ]'
這是包含 stmt 的所有內嵌參數定義的字串。此字串必須是 Unicode 常數或 Unicode 變數。每個參數定義都由參數名稱和資料類型組成。n 是一個表示其他參數定義的預留位置。statement 所指定的每個參數都必須定義在 @params 中。如果 stmt 中的 Transact-SQL 陳述式或批次不包含參數,就不需要 @params。這個參數的預設值是 NULL。[ @param1 = ] 'value1'
這是參數字串所定義的第一個參數的值。這個值可以是 Unicode 常數或 Unicode 變數。stmt 所包含的每個參數都必須有所提供的參數值。當 stmt 中的 Transact-SQL 陳述式或批次沒有參數時,便不需要值。[ OUT | OUTPUT ]
指出這個參數是輸出參數。除非程序是 Common Language Runtime (CLR) 程序,否則 text、ntext 和 image 參數可用來作為 OUTPUT 參數。除非程序是一個 CLR 程序,否則,使用 OUTPUT 關鍵字的輸出參數可以是資料指標預留位置。n
這是其他參數值的預留位置。這些值只能是常數或變數。這些值不能是比較複雜的運算式,如函數或利用運算子來建立的運算式。
傳回碼值
0 (成功) 或非零 (失敗)
結果集
從內建在 SQL 字串內的所有 SQL 陳述式中傳回結果集。
備註
關於批次、名稱範圍和資料庫內容,sp_executesql 的行為和 EXECUTE 相同。sp_executesql stmt 參數中的 Transact-SQL 陳述式或批次必須等到執行 sp_executesql 陳述式之後,才會編譯。之後,就會編譯 stmt 的內容,且會在呼叫 sp_executesql 之批次的執行計畫之外,個別將它當做一項執行計畫來執行。sp_executesql 批次無法參考呼叫 sp_executesql 的批次中所宣告的變數。稱為 sp_executesql 的批次無法見到 sp_executesql 批次中的本機資料指標或變數。資料庫內容中的變更會持續到 sp_executesql 陳述式結束。
當陳述式參數值的變更是唯一的變數時,您可以利用 sp_executesql 取代預存程序來重複執行 Transact-SQL 陳述式。由於 Transact-SQL 陳述式本身維持不變,只有參數值改變,因此,SQL Server 查詢最佳化工具可能會重複使用它針對第一次執行所產生的執行計畫。
[!附註]
若要提升效能,請在陳述式字串中使用完整物件名稱。
sp_executesql 支援在 Transact-SQL 字串之外個別設定參數值,如下列範例所示。
DECLARE @IntVariable int;
DECLARE @SQLString nvarchar(500);
DECLARE @ParmDefinition nvarchar(500);
/* Build the SQL string one time.*/
SET @SQLString =
N'SELECT EmployeeID, NationalIDNumber, Title, ManagerID
FROM AdventureWorks.HumanResources.Employee
WHERE ManagerID = @ManagerID';
SET @ParmDefinition = N'@ManagerID tinyint';
/* Execute the string with the first parameter value. */
SET @IntVariable = 197;
EXECUTE sp_executesql @SQLString, @ParmDefinition,
@ManagerID = @IntVariable;
/* Execute the same string with the second parameter value. */
SET @IntVariable = 109;
EXECUTE sp_executesql @SQLString, @ParmDefinition,
@ManagerID = @IntVariable;
輸出參數也可以搭配 sp_executesql 來使用。下列範例會從 AdventureWorks.HumanResources.Employee 資料表中擷取一個職稱,並在輸出參數 @max\_title 中將它傳回。
DECLARE @IntVariable int;
DECLARE @SQLString nvarchar(500);
DECLARE @ParmDefinition nvarchar(500);
DECLARE @max_title varchar(30);
SET @IntVariable = 197;
SET @SQLString = N'SELECT @max_titleOUT = max(Title)
FROM AdventureWorks.HumanResources.Employee
WHERE ManagerID = @level';
SET @ParmDefinition = N'@level tinyint, @max_titleOUT varchar(30) OUTPUT';
EXECUTE sp_executesql @SQLString, @ParmDefinition, @level = @IntVariable, @max_titleOUT=@max_title OUTPUT;
SELECT @max_title;
在 sp_executesql 中替換參數的能力,會為利用 EXECUTE 陳述式來執行字串帶來下列好處:
由於在各次執行之間,sp_executesql 字串中 Transact-SQL 陳述式的實際文字不會改變,因此,查詢最佳化工具可能會使第二次執行的 Transact-SQL 陳述式與針對第一次執行所產生的執行計畫相符合。因此,SQL Server 不需要編譯第二個陳述式。
Transact-SQL 字串只建立一次。
整數參數用原生格式來指定。不需要轉換成 Unicode。
權限
需要 public 角色中的成員資格。
範例
A. 執行簡單的 SELECT 陳述式
下列範例會建立和執行包含名稱為 @level 的內嵌參數之簡單 SELECT 陳述式。
EXECUTE sp_executesql
N'SELECT * FROM AdventureWorks.HumanResources.Employee
WHERE ManagerID = @level',
N'@level tinyint',
@level = 109;
B. 執行動態建立的字串
下列範例會顯示如何利用 sp_executesql 來執行動態建立的字串。這個範例預存程序會將資料插入一組用來分割年度銷售資料的資料表。年度每個月份都有一份資料表,格式如下:
CREATE TABLE May1998Sales
(OrderID int PRIMARY KEY,
CustomerID int NOT NULL,
OrderDate datetime NULL
CHECK (DATEPART(yy, OrderDate) = 1998),
OrderMonth int
CHECK (OrderMonth = 5),
DeliveryDate datetime NULL,
CHECK (DATEPART(mm, OrderDate) = OrderMonth)
)
這個範例預存程序會動態建立和執行 INSERT 陳述式,以將新的訂單插入正確的資料表中。這個範例利用訂購日期來建立應該包含資料之資料表的名稱,再將這個名稱納入 INSERT 陳述式中。
[!附註]
這是 sp_executesql 的簡單範例。這個範例不包含錯誤檢查,也不包括商務規則的檢查,如保證訂單號碼在資料表之間不重複。
CREATE PROCEDURE InsertSales @PrmOrderID INT, @PrmCustomerID INT,
@PrmOrderDate DATETIME, @PrmDeliveryDate DATETIME
AS
DECLARE @InsertString NVARCHAR(500)
DECLARE @OrderMonth INT
-- Build the INSERT statement.
SET @InsertString = 'INSERT INTO ' +
/* Build the name of the table. */
SUBSTRING( DATENAME(mm, @PrmOrderDate), 1, 3) +
CAST(DATEPART(yy, @PrmOrderDate) AS CHAR(4) ) +
'Sales' +
/* Build a VALUES clause. */
' VALUES (@InsOrderID, @InsCustID, @InsOrdDate,' +
' @InsOrdMonth, @InsDelDate)'
/* Set the value to use for the order month because
functions are not allowed in the sp_executesql parameter
list. */
SET @OrderMonth = DATEPART(mm, @PrmOrderDate)
EXEC sp_executesql @InsertString,
N'@InsOrderID INT, @InsCustID INT, @InsOrdDate DATETIME,
@InsOrdMonth INT, @InsDelDate DATETIME',
@PrmOrderID, @PrmCustomerID, @PrmOrderDate,
@OrderMonth, @PrmDeliveryDate
GO
在這個程序中使用 sp_executesql,比利用 EXECUTE 來執行字串有效。當使用 sp_executesql 時,只會產生 12 個 INSERT 字串版本,每月資料表各一個。當使用 EXECUTE 時,每個 INSERT 字串都是唯一的,因為參數值不同。雖然這兩個方法會產生相同的批次數目,但 sp_executesql 所產生之 INSERT 字串的類似性,使得查詢最佳化工具更可能重複使用執行計畫。
C. 使用 OUTPUT 參數
下列範例使用 OUTPUT 參數將 SELECT 陳述式產生的結果集儲存在 @SQLString 參數中。接著執行兩個使用 OUTPUT 參數值的 SELECT 陳述式。
USE AdventureWorks;
GO
DECLARE @SQLString nvarchar(500);
DECLARE @ParmDefinition nvarchar(500);
DECLARE @SalesOrderNumber nvarchar(25);
DECLARE @IntVariable int;
SET @SQLString = N'SELECT @SalesOrderOUT = MAX(SalesOrderNumber)
FROM Sales.SalesOrderHeader
WHERE CustomerID = @CustomerID';
SET @ParmDefinition = N'@CustomerID int,
@SalesOrderOUT nvarchar(25) OUTPUT';
SET @IntVariable = 22276;
EXECUTE sp_executesql
@SQLString
,@ParmDefinition
,@CustomerID = @IntVariable
,@SalesOrderOUT = @SalesOrderNumber OUTPUT;
-- This SELECT statement returns the value of the OUTPUT parameter.
SELECT @SalesOrderNumber;
-- This SELECT statement uses the value of the OUTPUT parameter in
-- the WHERE clause.
SELECT OrderDate, TotalDue
FROM Sales.SalesOrderHeader
WHERE SalesOrderNumber = @SalesOrderNumber;
如需其他範例,請參閱<使用 sp_executesql>。