On 02/02/14 18:29, Milorad Tosic wrote:
Hi,
I need to post process ResultSet such that few new columns are
custom computed by my code and inserted into the ResultSet.
> For example, let's have the following result set:
| a | b |
| 1 | 2 |
I would like to return the following resultset inste
Hi,
I need to post process ResultSet such that few new columns are custom computed
by my code and inserted into the ResultSet. For example, let's have the
following result set:
| a | b |
| 1 | 2 |
I would like to return the following resultset instead (that would contain sum
c = a + b)
| a |