Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a database to access via JDBC which returns around 200k of records I have to consolidate data table style for further processing. I could if that leads to good performance send a few SELECT (Count(...) ...) statements upfront.

What is a good algorithm in Java to compute such a pivot table?

share|improve this question
2  
Generally databases are much better suited to manipulating large volumes of data than Java. Why not do the pivoting in SQL and just grab the end product through JDBC? – APC Aug 13 '10 at 10:42
it may help a lot if you transform the question to "How to do X in SQL?" instead of "How to do X in Java?". You're underestimating the DB powers. – BalusC Aug 13 '10 at 13:04

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.