I am using Access to deal with a table with two fields. The table looks like
Field1 Field2
bob john
kate jum
tim kim
I want to select both fields and output them in order, but I can't use
Select Field1,Field2
From table1
order by Field1,Field2;
Because I want to sort them by the result of concatenation of Field1 and Filed2, but not order by Field1 first then Field2 secondly. What to do please? thanks.