Hi folks
I do a lot of work with address data. I have been using Acess 2003 as my database but now need to upgrade to SQL Server.
My queries have been making extensive use of the Val function to order my queries on address columns. A typical address column might be:
12 The Avenue .......
by using Order By Val(AddressCol) I can sort these rows in ascending house number.
I can't find anything in SQL Server that will acomplish this. Does anybody have any ideas.
Thanks
Paul
why do you need to reference the val() function? is there something in your column that you want to exclude?
Does: "order by AddressCol" in TSQL not accomplish what you want?
No comments:
Post a Comment