Viewing 8 posts - 46 through 53 (of 53 total)
I am getting Engineerid properly but EngineerName is NULL
March 19, 2010 at 7:14 am
This is from Table1.
I have just given some sample values, Duplications are allowed in this table. Because one engineer can raise any no. of bugs. only thing is bug id...
March 19, 2010 at 5:41 am
BugId EngineerId EngineerName State
10233 64867 ...
March 19, 2010 at 5:28 am
Insert into Table2(EngineerId,EngineerName)
select Distinct(EngineerId),EngineerName from Table1
where EngineerId not in (select (EngineerId) from Table2)
Why it is not retrieving EngineerName?
March 19, 2010 at 5:14 am
Cool it is working... Thanks for the gr8 help.
March 19, 2010 at 4:54 am
This is ok if the table1 does not have the repetition of EngineerId. But Table1 has the repetition of EngineerId. I've tried your code. It says Primary Key violation.
Can...
March 19, 2010 at 4:39 am
Viewing 8 posts - 46 through 53 (of 53 total)