Add Time to Datetime
I have two columns `timePlaced` is a datetime, while `timeEstimate` is an integer that represents minuets. Using the below beast mode I am able to convert `timeEstimate` to minuets, ex 10 turns to 00:10:00. SEC_TO_TIME(`timeEstimate`*60) When I try to add it to `timePlaced` using the fowling beast mode I get null values.…