Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> problem comparing strings
A list with a unique alphanumeric key (HNR=VCHAR2(15)) sort by HNR:
SQL> select hnr from tbl_merkzettel order by hnr;
HNR
I want to get the next line after the marked:
SQL> select * from tbl_merkzettel where hnr>'37fb085cbd1a7' order by hnr;
No Output
I tried the same with a MS Access Table and get a different order
SELECT HNR
FROM merk
ORDER BY HNR;
HNR
37ef7501b82de
37f1dc0d46f04
37f1dc1cf0efc
37f323ff81e3c
37fb085cbd1a7
So the oracle server delivers a wrong order. What's the problem?
Sent via Deja.com http://www.deja.com/
Before you buy.
Received on Wed Oct 06 1999 - 04:47:49 CDT
![]() |
![]() |