If there are two normalized tables and this result set comes from a
join, then a better solution is to write a simple join so MyBatis can
do it for you automatically. The result set should look like this:
nodeid, nodeenergy, vid, energy
00:D0:69:41:F6:77.1, 37845.971, 1, 94895.68
00:D0:69:41:F6:77.1, 37845.971, 2, 94895.68
00:D0:69:41:F6:8C.1, 57049.709, 1, 94895.68
00:D0:69:41:F6:8C.1, 57049.709, 2, 94895.68
If there is only one table with repeated columns, then you have to do
it with a row handler - but that might be bad database design.
Jeff Butler