MYSQL - datetime to seconds

前端 未结 7 1693
伪装坚强ぢ
伪装坚强ぢ 2020-12-09 01:40

I wasn\'t able to find out (googling, reading mysql reference manual) how to get value of DATETIME in seconds in MySQL.

I dont mean to extract secon

7条回答
  •  一向
    一向 (楼主)
    2020-12-09 01:55

    Use TIME_TO_SEC in previous versions for mysql

    SELECT TIME_TO_SEC(time column) FROM table

提交回复
热议问题