I have a table for example: id | name | date_add
With content:
1| Mark | 2018-02-01 10:00:00
2| Andrew | 2018-02-01 10:00:00
When I try to do this request: select * from table order by date_add
I get rows in the next order: 2, 1
It occurs in Percona MySQL docker
With the same Percona on my host machine I got in 1, 2 order
How to enable logic in Docker as at my host machine?