UFN_OPPORTUNITYAMOUNTBRACKETS_TOITEMLISTXML
Used to convert the results of UFN_OPPORTUNITYAMOUNTBRACKETS to xml.
Return
Return Type |
---|
xml |
Definition
Copy
/*
Generated by Blackbaud AppFx Platform
Date: 12/17/2008 2:13:20 AM
Assembly Version: Blackbaud.AppFx.Platform.SqlClr, Version=1.7.1271.0, Culture=neutral, PublicKeyToken=null
Based on: UFN_OPPORTUNITYAMOUNTBRACKETS
Copyright Blackbaud
*/
CREATE FUNCTION dbo.[UFN_OPPORTUNITYAMOUNTBRACKETS_TOITEMLISTXML](
)
returns xml
as
BEGIN
RETURN (
SELECT [ID], [LOWERLIMIT], [NAME]
FROM dbo.[UFN_OPPORTUNITYAMOUNTBRACKETS]()
order by LOWERLIMIT desc
for xml raw('ITEM'),type,elements,root('OPPORTUNITYAMOUNTBRACKETS'),BINARY BASE64
)
END