You can use MySQL’s UNIX_TIMESTAMP()
function:
SELECT *, UNIX_TIMESTAMP(createdate) AS unix_createdate FROM my_table
solved Select all columns but unix_timestamp createdate [closed]
You can use MySQL’s UNIX_TIMESTAMP()
function:
SELECT *, UNIX_TIMESTAMP(createdate) AS unix_createdate FROM my_table
solved Select all columns but unix_timestamp createdate [closed]