Forum Replies Created

Viewing 15 posts - 2,221 through 2,235 (of 2,766 total)

  • RE: Today's Random Word!

    Friday

  • RE: Need for right and left outer join

    You could probably get away with it in theory, but what happens when you start getting into complex table joins where you need to differentiate LEFT and RIGHT join? ...

  • RE: Fantasy football

    Steve Jones - Editor (9/14/2010)


    Heck yeah, I won.

    Heck no! I lost to Steve! 😛

  • RE: Datetime in sql

    What Lutz and I are showing you are ways to convert your year/month (201008) into a datetime format that you can compare against other dates. That way, you can...

  • RE: Datetime in sql

    Try:declare @Date varchar(10)

    set @Date = '201008'

    select cast(right(@Date,2) + '/01/' + left(@Date,4) as datetime)

    Edit: I missed this part:

    I have one column in table table1 that has period month of integer...

  • RE: Talking baseball

    We're coming into the home stretch. Anyone have any bold predictions for the next few weeks?

    How about . . .

    • The Rockies overtake both the Padres and Giants to win...

      Viewing 15 posts - 2,221 through 2,235 (of 2,766 total)