Hi All,
Is there any way for sorting two QList of different objects.
for e.g. I have two POCO(Plain Old Cpp objects) Classes (Student & Employee), & both have CREATION_TIME field in db (consists when the record is created).
Now I have to sort this both QList (QList<Student> & QList<Employee>) by their CREATION_TIME.
Can it be done programmatically? or can it be achieved by some SQL query?

Any kind of help will be appreciated.

Thanks in Advance.

PS : CREATION_TIME is of type DATETIME (QDateTime).