I want to perform a special query on a table in my oracle database.
I want the result to be sorted according to an enum that I have.
the enum goes as follows:
private enum days
{
Saturday = 1,
Sunday,
Monday,
Tuesday,
Wednesday,
Thursday,
}
I want the result to be sorted according to this enum.