Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 Transact-SQL (2005)
 query

Author  Topic 

sqlfresher2k7
Aged Yak Warrior

623 Posts

Posted - 2012-05-22 : 15:19:07
I have a field that contains values like "1.2.3.4"
HOw to sort on value.

Lamprey
Master Smack Fu Yak Hacker

4614 Posts

Posted - 2012-05-22 : 15:36:10
[code]SELECT *
FROM <table name>
ORDER BY <column name>[/code]
Go to Top of Page
   

- Advertisement -