Modifying the query to solve the Problem 2038 in MariaDB
I have a SQL query: update party set left_time=(next_dose-dose)/power,takeoff=from_unixtime(unix_timestamp()+left_time); How can I modify it without using unix time to get the dates further than 2038-01-19? >Solution : If you want just the UTC time that is left_time seconds from now, just do: utc_timestamp() + interval left_time second But that’s not what from_unixtime does; from_unixtime will… Read More Modifying the query to solve the Problem 2038 in MariaDB