Forum Replies Created

Viewing 15 posts - 196 through 210 (of 331 total)

  • RE: Outsourced = Laid Off?

    Why dont we break it down on an average:

    1200rent

    400groceries

    300gas car

    100ins car

    200eletric

    100gas

    300health ins

    300car payment

    2900total monthly cost

    34800total year cost

    44544with tax cost tossed in

    So on an Average to live in america you need...

  • RE: Today's Random Word!

    Revenant (7-15-2011)


    bopeavy (7/15/2011)

    --------------------------------------------------------------------------------

    SQLRNNR (7-15-2011)

    --------------------------------------------------------------------------------

    motivation

    observation

    Conclusion

    Success

  • RE: Today's Random Word!

    SQLRNNR (7-15-2011)

    --------------------------------------------------------------------------------

    motivation

    observation

  • RE: INNER JOIN with a String Challenge

    JohnDBA

    The easiest thing for you to do is correct the design failure something like this:

    alter table #MySample add addessCode varchar(18)

    Then update it with the proper values, after that make...

  • RE: INNER JOIN with a String Challenge

    JohnDBA

    froget the address table and look at the mysample table. You have 2 records that have that value. Once again how do you know that the record belong to ZZ...There...

  • RE: INNER JOIN with a String Challenge

    Nevyn : Thank you for noticing.:-D

  • RE: INNER JOIN with a String Challenge

    So how can I determine that based on the info you gave me? There is nothing in the #MySample table letting me know that row belongs to ZZ group.

  • RE: INNER JOIN with a String Challenge

    JohnDBA

    I must join ID with address code where code start with 'A B ' + 9 digits.

    There are 3 spaces between A and B, and there is 1 space after...

  • RE: Outsourced = Laid Off?

    J Thaddeus Klopcic


    $50k - $75k plus nice benefits isn't enough? Sorry -- our systems can't spin gold from straw.

    $50K...

  • RE: Today's Random Word!

    Brandie Tarvin (7/15/2011)


    Daniel Bowlin (7/15/2011)

    --------------------------------------------------------------------------------

    perfect

    freaky

    absurd

  • RE: INNER JOIN with a String Challenge

    John

    did you try my suggestion no reverse at all:

    SELECT * FROM #MyAddress a join #mysample s on

    Right(replace(a.AddressCode,' ',''),9) = LEFT(s.ID,9)

    where replace(a.AddressCode,' ','') like ('AB%')

  • RE: Ranges as a component of a primary key

    Jeff

    Careful, now... The code above will only allow each person to live in one place... ever.

    So true Jeff thats why I stated not sure what he...

  • RE: INNER JOIN with a String Challenge

    JohnDBA

    I think this is what you wanted:

    SELECT * FROM #MyAddress a join #mysample s on

    Right(replace(a.AddressCode,' ',''),9) = LEFT(s.ID,9)

    where replace(a.AddressCode,' ','') like ('AB%')

  • RE: Study material\dumps for Exam 70-450

    bitbucket-25253

    LOL!!:hehe:

  • RE: INNER JOIN with a String Challenge

    JohnDBA

    I must join ID with address code where code start with 'A B ' + 9 digits.

    There are 3 spaces between A and B, and there is 1 space after...

Viewing 15 posts - 196 through 210 (of 331 total)