Can we create a table in Mysql server with a column as the difference between two other columns. So when those two columns are populated the third column will be computed from them.
CREATE TABLE LOAD(
START_TIME DATETIME,
END_TIME DATETIME,
ELAPSED_TIME DATETIME AS START_TIME-END_TIME
)
Something like this