GenieTR
IS-IT--Management
- Jan 21, 2003
- 28
I have two tables, same structure, trying to update one of the field from table B to table A. In table A the field in question have missing data, whereas, in table B there is no missing data in that particular field.
I create a update sql statement that goes like this:
UPDATE client1 INNER JOIN client11 ON client1.clientID = client11.clientID SET client11.mcssid = client1.mcssid WHERE client11.mcssid <> client1.mcssid;
When I click view, a dialog box appear ask me for mcssid. How do you run this sql or how do you go about updating the table that have missing data in the mcssid field?
Thanks in advance
I create a update sql statement that goes like this:
UPDATE client1 INNER JOIN client11 ON client1.clientID = client11.clientID SET client11.mcssid = client1.mcssid WHERE client11.mcssid <> client1.mcssid;
When I click view, a dialog box appear ask me for mcssid. How do you run this sql or how do you go about updating the table that have missing data in the mcssid field?
Thanks in advance