I am trying to update a table where it has a network_name ,say the LOAD table. Table Network has the same column too, network_name. Now how will I update the values on table LOAD if the same value was updated on table Network?
LOAD
network_name | product code |
-------------+--------------+
Talk & Text | aaaaaaaaaaa
Talk & Text | aaaaaaaaaaa
Touch Mobile | aaaaaaaaaaa
NETWORK
network_id |network_name | network code |
-----------+-------------+--------------+
12235 |Talk & Text | aaaaaaaaaaa
23343 |Smart | aaaaaaaaaaa
34343 |Touch Mobile | aaaaaaaaaaa
Now what if the Talk N Text is changed into TalkText, how will I update the Load table?
UPDATE [LOAD] SET [network_name] = 'TalkText' WHERE [network_name] = 'Talk & Text'? It's not clear what the problem is or why you can't update the data.