Viewing 4 posts - 1 through 4 (of 4 total)
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.
November 23, 2011 at 3:12 pm
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...
November 23, 2011 at 2:32 pm
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...
November 23, 2011 at 12:35 pm
Viewing 4 posts - 1 through 4 (of 4 total)