How can i sort a varchar field , i have taken ID as varchar and i want to sort it numerically.

We can do this in SQL with using

sql query ... order by 0+id desc

What i have in Jooq is

SimpleSelectFinalStep<ScoreCardRecord> q = factory.selectFrom(ScoreCard.SCORE_CARD)
                    .orderBy(OloScoreCard.SCORE_CARD_ID.descending())
                    .limit(0,1);
link|improve this question

I have figured it out... SimpleSelectFinalStep<ScoreCardRecord> q = factory.selectFrom(ScoreCard.SCORE_CARD) .orderBy(factory.plainSQLField("(0+SCORE_CARD_ID)").descending()) .limit(0,1); Sorry for disturbing anyone! – Shekhar Apr 25 '11 at 4:20
1  
you can answer your own questions on Stackoverflow. That's not disturbing anyone. Other readers with a similar question might stumble upon yours and find your answer, which is helping too... – Lukas Eder Apr 25 '11 at 11:28
feedback

1 Answer

up vote 1 down vote accepted

Have you tried casting your VARCHAR field into a numeric DataType? You could do it like this:

factory.selectFrom(ScoreCard.SCORE_CARD)
       .orderBy(OloScoreCard.SCORE_CARD_ID.cast(Integer.class).descending())
       .limit(0, 1);

That way you could omit using "plain SQL fields"

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.