我在SQL Server 2008 R2中創建了一個返回varchar(4000)的標量函數。 此varchar(4000)是連接表的多行和多列的結果。 我將在報表的選擇源中使用此功能。 細節是特定銷售數量和價格的產品。SQL Server標量函數返回VARCHAR截斷
當我使用select函數時,會發生問題。 結果被截斷。 他當時要返回13行並且只返回5. 如果我在sql管理工作室函數內使用print命令返回 的13行。
該函數返回正確的數字行該怎麼辦?
print dbo.fnReturnProducts ('{25899A98-5E68-E641-8C9D-7F341F17F2EF}') -- returns 13 lines
select dbo.fnReturnProducts ('{25899A98-5E68-E641-8C9D-7F341F17F2EF}') -- returns 5 lines
alter function [dbo].[fnReturnProducts](@OrderId uniqueidentifier) returns varchar(4000)
begin
declare @Products as varchar(4000)
declare @ProductName as varchar(43)
declare @ProductOrder as varchar(3)
declare @Quantity varchar(30)
declare @UnitPrice varchar(30)
declare @TotalPrice varchar(30)
select @Products = ''
DECLARE aux_cursor CURSOR FOR
select
ProductName as ProductName,
dbo.FormatNumber (ProductOrder, 0, '(', 0) as ProductOrder,
dbo.FormatNumber (Quantity, 2, '', 0) as Quantity,
dbo.FormatNumber (UnitPrice , 2, '$', 0) as UnitPrice,
dbo.FormatNumber (Quantity * UnitPrice, 2, '$', 0) as TotalPrice
from vwOrderDetails
Where OrderId = @OrderId
order BY vwOrderDetails.ProductOrder
OPEN aux_cursor
FETCH NEXT FROM aux_cursor
INTO
@ProductName,
@ProductOrder,
@Quantity,
@UnitPrice,
@TotalPrice
WHILE @@FETCH_STATUS = 0
BEGIN
if len(@Products) > 0
begin
select @Products = @Products + char(10)
end
select @Products = @Products + '(' + @ProductOrder + ') ' + @Quantity + ' - ' + @ProductName + ' a ' + @UnitPrice + ' = ' + @TotalPrice
FETCH NEXT FROM aux_cursor
INTO
@ProductName,
@ProductOrder,
@Quantity,
@UnitPrice,
@TotalPrice
END
CLOSE aux_cursor
DEALLOCATE aux_cursor
RETURN @Products
end
go
從SSMS外部調用時它被截斷了嗎?好奇地檢查它是否僅僅是截斷它的結果窗口... – 2013-03-21 21:58:55
print dbo.fnReturnProducts('{25899A98-5E68-E641-8C9D-7F341F17F2EF}') - 返回13行 – user2197049 2013-03-22 12:00:46
號SSMS內部和應用程序。當我使用選擇結果返回截斷。 – user2197049 2013-03-22 12:04:44