I want to multiply 2 cells for each row and put the value of that in the last column called Total. Can this be done by a normal query?
Example:
Piec
You can do it with:
UPDATE mytable SET Total = Pieces * Price;