在T-SQL 中,一個常見的任務是組合用於格式化欄位的數字和字串。例如,您可能需要使用特定單位顯示重量或尺寸。但是,在組合整數和字串時,可能會出現轉換錯誤。
考慮以下程式碼片段,旨在連接和格式化權重和維度的數字:
ALTER FUNCTION [dbo].[ActualWeightDIMS] ( @ActualWeight int, @Actual_Dims_Lenght int, @Actual_Dims_Width int, @Actual_Dims_Height int ) RETURNS varchar(50) AS BEGIN DECLARE @ActualWeightDIMS varchar(50); --Actual Weight IF (@ActualWeight is not null) SET @ActualWeightDIMS = @ActualWeight; --Actual DIMS IF (@Actual_Dims_Lenght is not null) AND (@Actual_Dims_Width is not null) AND (@Actual_Dims_Height is not null) SET @ActualWeightDIMS= @Actual_Dims_Lenght + 'x' + @Actual_Dims_Width + 'x' + @Actual_Dims_Height; RETURN(@ActualWeightDIMS); END
使用函數時,發生錯誤:「轉換varchar值時轉換失敗'x' 轉換為int資料類型。
要解決該錯誤,請在連接之前將整數參數明確轉換為VARCHAR:
SET @ActualWeightDIMS = CAST(@Actual_Dims_Lenght AS VARCHAR(16)) + 'x' + CAST(@Actual_Dims_Width AS VARCHAR(16)) + 'x' + CAST(@Actual_Dims_Height AS VARCHAR(16))
此確保參數被視為字串,允許它們與“x”分隔符號連接。
以上是在T-SQL中連接數字和字串時如何避免轉換錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!