I have a two table called dbo.name and dbo.class .
name
Name id
A 1
B 2
C 3
D 4
class
Id mainid
1
2
Here I need to fill up mainid by mapping the tables that means suppose if D is a main name and has id 4 that should become mainid in dbo.class. I should get 4 in first row. If c is another main name I should get c’s id as mainid in 2nd row.
2 3
how do I write a query for this?please help to write a query for this.
classthat points to either D or 4 (or anything else), so how do you know that the class with ID=1 should have a mainid of 4. – Jon Egerton Feb 8 '12 at 11:09