Viewing 2 posts - 1 through 2 (of 2 total)
It worked... thanks!!!!
ALTER FUNCTION dbo.ProductCategoryTree
(
@CategoryID int
)
RETURNS varchar(200)
AS
BEGIN
DECLARE @return varchar(200)
DECLARE @category int
DECLARE @categoryname varchar(200)
SET @return = ''
SET...
March 12, 2007 at 9:05 pm
#694560
Thanks everybody! This is so much faster than looking in BOL
Scott
September 15, 2004 at 7:57 am
#523168