I have 2 tables like:
Table 1
SID Sdefinition CValue
4057 s1 32
4058 s2
4059 s3 6
4060 s4
Mapping_tbl
SID SINID ECFID SID-SINID
4057 1099 4027e 1099_4057
4058 1099 4027e 1099_4058
4059 1121 4003e 1121_4059
4060 1121 4003e 1121_4060
Query1
SELECT Mapping_tbl.SID, Table1.Sdefinition, Table1.CValue
FROM Table1 INNER JOIN Mapping_tbl ON Table1.SID= Mapping_tbl.SID;
Query1(Result)
SID Sdefinition CValue
4057 s1 32
4058 s2
4059 s3 6
4060 s4
I have a situation that I wanted to update query table (Query1) i.e set field(Cvalue) to 0 if it contains null. I am using update query like
Update Query1 Set CValue = 0 Where CValue Is Null;
The query table (query1) gets updated and sets Cvalue to 0 if it contains nulls, and it also updates(set 0) Table1 where Cvalues are null.
How can I avoid updating Table1? Any suggestions.