When I download CSV file on the queries page,
the datetime format that CSV has is not as same as an original data.
is this a bug or a feature?
Original data on MySQL is "2018-01-23 14:00:30"
Redash CSV is "2018-01-23T14:00:30"
I'd like to get rid of "T".
@RichardLitt
thank you for adding Labels on the ticket.
Hi @GitSumito ,
FYI, here is a simple workaround.
SELECT DATE_FORMAT(NOW(), '%Y-%m-%d %H:%i:%s') now;
it worked on Redash 4.0.1+b4038 and MySQL 5.7.20.
I hope this helps.
Hi @ariarijp
Thanks for the reply.
I adopt the idea.
Thank you.