Try to use Timestamp() for specifying that you expect the fields you wanna extract data from as timestamps.
something like this:
SELECT timestamp( `timestamp` ) as 'timestamp'
FROM randomTable
ORDER BY 1 ASC;
it would be great if you can post screenshots of your output to make the issue clearer.