I have this update query.
UPDATE production_shr_01
SET total_hours = hours, total_weight = weight, percentage = total_hours / 7893.3
WHERE (status = 'X')
The query executes fine but the problem is that when this query executes, it doesn't update the percentage field. What might be the problem?