I have two containers. Both are identical. Both are launched using the same docker-compose.yml file on two different servers. Both have the same data. Exactly the same (one is backed up and restored in the other one).
Yet I get different sorting for the same query.
This is my query:
SELECT `i`.`Id`,
`i`.`Guid`,
`i`.`Key`,
`i`.`Name`,
`i`.`Order`,
`i`.`PartTypeId`,
`i`.`PartTypeKey`,
`i`.`SectionId`,
`i`.`SectionKey`
FROM `ItemPartViews` AS `i`
WHERE `i`.`SectionId` = 7
ORDER BY `i`.`Order`
And these are images of the results:
I can't understand why do I get different sorts. Any explanation is appreciated.

