Forum Replies Created

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

  • RE: Happy Birthday

    1952 McGraw-Hill edition of I Led 3 Lives by Herb Philbrick

  • RE: Recursive Queries in SQL Server 2005

    Here's the SQL factorial:

    With Fact (Num, Factorial)

    As

    (

    Select 0 as Num, convert(bigint, 1) as Factorial

    Union All

    Select Num + 1, convert(bigint, Num + 1) * Factorial from Fact

    Where Num + 1 <=...

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