Modcraft - The community dedicated to quality WoW modding!
Wrath of the Lich King Modding => Miscellaneous => Topic started by: Big Bad Bot on March 10, 2016, 11:33:12 pm
-
Hello there. In the SQL of the WLK server, all the dates are expressed with numbers like this one:
1459872570
How can I see wich time actually is?
-
Unix timestamp converter
-
Its number of seconds passed since since Jan 01 1970. Like schlumpf said, you can google up a simple converter.
-
In Mysql you can use FROM_UNIXTIME i.e. SELECT FROM_UNIXTIME(1459872570)
-
Wow, I didn't know about this, big thanks barncastle!