Forum Replies Created

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

  • RE: Help with SQL query

    Thank you so much!

  • RE: Help with SQL query

    That is exactly why I need to identify these contracts, the business rules were not put in place. This should never have happened and we need to fix these cases.

  • RE: Help with SQL query

    I think I figured out how to do it... using two temp tables. Let me know if there is an easier way please...

    CREATE TABLE #Temp(

    contract int,

    ClientName varchar(100))

    CREATE TABLE #Temp1(

    contract int)

    Insert...

  • RE: Help with SQL query

    This is not a homework assignment :-), I need to do this for my work but I am not very strong with the SQL. I tried group by and having...

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