Hi experts,
When I run the following SQL, it shows me "2 records"
update table_A set column_A = 'X' where a=b
but when I run "select count(*) from table_a where a=b", it shows me "3 records".
I'm confused. why are the records difference between select and update statement?
Thanks