ทำอย้างนี้ดูครับ Convert ให้เป็น integer
==================================================
Select * from YOURTABLE order by CONVERT(substring(YOURFIELD,2),SIGNED)
select docno,name ,docno+'/'+name as docnodetail from [Table]
order by docno CONVERT(substring(docno,2),SIGNED)
ใช้ไม่ได้ค่ะ ไม่รู้ว่าผิดเพราะอารัย แต่มันฟ้อง Docno
เลยเปลี่ยนมาใช้
select docno,name ,docno+'/'+name as docnodetail from [Table]
order by len(docno),docno ได้ค่ะ ลองดูนะค่ะ