trying to work this out but not sure about it really
I have a JSON object which contains multiple items like below
DATA_TABLE = [{"rownum": 0, "Surname": "Doe", "Firstname": "John", "Dob": "1 Jan 1980"}...]
I want to sort the data by DOB then Surname then firstname, to get the same result like for example the sql statement
ORDER BY Dob, Surname, Firstname