Hi there,
I would like to sort some fields by alphabetically but there is a problem.I need a special sorting feature.My field contains :
"Select * from MyTable order by Field1"
Field1
--------
1. bottle
4. bottle
6. bottle
2. bottle
Personal
3. bottle
5. bottle
When i sort this field, my SQL server (PostgreSQL) sorts alphabetically (naturally) :
Field1
--------
1. bottle
2. bottle
3. bottle
4. bottle
5. bottle
6. bottle
Personal
But i need to sort fields like this :
Field1
--------
Personal
1. bottle
2. bottle
3. bottle
4. bottle
5. bottle
6. bottle
So How should i sort this specifically?
Analyzer