Here is my mssql function code.
ALTER function [dbo].[UF_GetOrderProducts]
(
@OrderId int
)
returns varchar(500)
as
begin
return
(
select CAST(VARCHAR(5),OP.ProductId)+'<br/>'
from OrderProduct as OP
where OP.OrderId = @OrderId
for xml path(''), type
).value('.', 'varchar(500)')
end
It returns, VARCHAR' is not a recognized built-in function name.
1条答案
按热度按时间ulmd4ohb1#
should be
See the MSDN docs .