
March 24th, 2012, 08:07 AM
|
|
Registered User
|
|
Join Date: Mar 2012
Posts: 3
Time spent in forums: 30 m 33 sec
Reputation Power: 0
|
|
|
Update table problem
here is my query which I want it to update the secretNO1 coulmn in firstterm table automatically when it's value entered in table studentdata , when I run it , it make noooooo changes
There is a relationship 1 to 1 between them
update FirstTerm
set SecretNO1 = StudentData.SecretNO1
from StudentData
inner join FirstTerm on FirstTerm.SettingID=StudentData.SettingID where StudentData.SettingID <> null
Please where is the problem??
|