My table has 4 columns. I want the last column to be a SUM of the previous 3 columns.
I can use a select command to get the result I want:
SELECT strength + agility + defense AS StatSum FROM userstats
How do I do this?
EDIT: I am looking how to place the SELECT command in the column so that column 4 will display the sum of each row.