Showing posts with label datetime. Show all posts
Showing posts with label datetime. Show all posts

How to change string to DATETIME in SQL?


SET `time_str` = STR_TO_DATE(`time_str`,'%d/%m/%Y %H:%i')

How to convert timestamp to UTC time


from datetime import datetime
import pytz

datetime.fromtimestamp(1563396127, tz=pytz.utc)