Hi All,
Can I combine 2 columns as a single column in a select statement?
i.e. select value_1, value_2, (value_2 + value_2) from table;
If so, in java how do I get the value of the combined column out of the
result object?
I tried
checkSum = result.getInt("(value_1 + value2)");
and
checkSum=result.getInt(3);
Thanks,
Phil