M 
		
								
				
				
			
		Mario
I have tbl1, as follows:
StudentID Name English Math
1 Andy 80 90
2 John 95 85
3 George 75
I have tbl2, as follows:
StudentID Name English Math
1 Andy 80
2 John 85
3 George 75
I want to update the missing values of tbl2 using the
data from tbl1.
Which will result in the following state of tbl2 after
update
StudentID Name English Math
1 Andy 80 90
2 John 95 85
3 George 75
Please help.
Thanks
Mario
				
			StudentID Name English Math
1 Andy 80 90
2 John 95 85
3 George 75
I have tbl2, as follows:
StudentID Name English Math
1 Andy 80
2 John 85
3 George 75
I want to update the missing values of tbl2 using the
data from tbl1.
Which will result in the following state of tbl2 after
update
StudentID Name English Math
1 Andy 80 90
2 John 95 85
3 George 75
Please help.
Thanks
Mario
