Hello, I have two table T1 and T2.I used Sql server 2000.
Table T1
ID WorkerName Group
1 Rahim,Karim 1
2 Kamal,Adam 3
3 Rahim,Karim 1
Table T2
WorkerID WorkerName
1 Rahim
2 Karim
3 Kamal
4 Adam
I want to replace Worker Name on T1 with 1st WorkerID on T2 Like this.
Table T1
ID WorkerName Group
1 1 1
2 3 3
3 1 1
Is there any solution for this?