I want to update a row like this:
_id, AttributeA, AttributeB, AttributeC
I need to find a row based on AttributeC so that I can update it, lets say the desired AttributeC contains value "X"
How would this be done?
I believe this would be done with a WHERE argument but can I get this whole statement spelled out?
Something like
This will update all rows where AttributeA = ‘X’ and set AttributeB to ‘value’, if there are more than 1.