Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: recursive function - help!

    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...

  • RE: Linked tables like in Access?

    Thanks everybody!  This is so much faster than looking in BOL

    Scott

Viewing 2 posts - 1 through 2 (of 2 total)