I have a Table (called myTable with field names of id and status) with the following information
in my Access 2000 database:
Anyway to sort it so the Completed records will be last? So the output would show all the status jobs that are in work (Review, First Phase, In Work, Quality Control) before the Completed jobs?
in my Access 2000 database:
Code:
id status
1 Review
2 First Phase
3 Completed
4 In Work
5 Quality Control
Anyway to sort it so the Completed records will be last? So the output would show all the status jobs that are in work (Review, First Phase, In Work, Quality Control) before the Completed jobs?
Code:
select * from myTable
order by ????