i'm new to MYSQL and i'm working on it through phpMyAdmin.
My issue is that i have imported a set of tables in after creating a database for them. I wrote some codes to obtain some values which are dates in a column and binary numbers in the second column, so i have 2 columns in total. Those date values are in the following format: dd-mm-yyyy
I want to export it to an Excel file and phpMyAdmin provides 2 exporting option which are:
- CSV
- CSV for MS Excel
For the first option, it exports "some" of the date values like this: ####### while there are other dates exported correctly but in this shape: dd/mm/yyyy !!
For the second option, it exports them all correctly with this date shape: dd/mm/yyyy, but all they are in one column like this:
2016-01-25;"0"
2016-01-25;"1"
Note: the imported tables are: UTF8_general_ci I tried different formats, different things but i don't know, i couldn't have the values appearing correctly in 2 columns !!
Thanks in advance.