I have a table like this,
ID Description City
----------------------------------
001 free_text MUL
002 also_free_text ERL
003 another_text MUL
004 whatever_text BER
005 text ERL
006 another BER
007 another_again MUL
I wonder how can I write a query to get result like this,
City ID Description
----------------------------------
BER
004 whatever_text
006 another
ERL
002 also_free_text
005 text
MUL
001 free_text
003 another_text
007 another_again
I'm working with Access 2007 with a SharePoint list. I need design the query in Access 2007, so that I can utilize the query elsewhere (not directly in Access, in other words, I cannot use the report function in Access 2007.
Any suggestion? Thanks!