Hello,
I'm using an SQL string to populate a multiselect listbox with dates. It's something like this:
select job_date, format(job_date, "ddd") as Day from job_list;
...and I want to sort by Day of Week in order (i.e. Mon, Tue, Wed, Thu, Fri, Sat). So I tried this:
select job_date...